interface WhisperModalProps {
    readonly onSend: (message: string) => void;
    readonly onCancel: () => void;
}
declare const WhisperModal: ({ onSend, onCancel }: WhisperModalProps) => import("react/jsx-runtime").JSX.Element;
export default WhisperModal;
