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