import { PropsWithChildren } from 'react';
export type RecordingInProgressNotificationProps = {
    text?: string;
};
export declare const RecordingInProgressNotification: ({ children, text, }: PropsWithChildren<RecordingInProgressNotificationProps>) => import("react/jsx-runtime").JSX.Element;
