import { PropsWithChildren } from 'react';
import { Placement } from '@floating-ui/react';
export type MicCaptureErrorNotificationProps = {
    /**
     * Text message displayed by the notification.
     */
    text?: string;
    placement?: Placement;
};
export declare const MicCaptureErrorNotification: ({ children, text, placement, }: PropsWithChildren<MicCaptureErrorNotificationProps>) => import("react/jsx-runtime").JSX.Element;
