import { FC, ReactElement, ReactNode } from 'react'; import { Iconic } from '@dynamic-labs/iconic'; import { Icon } from '../../../../shared'; type Props = { children: ReactNode; className?: string; dataTestId?: string; icon?: Icon | Iconic | ReactElement; showSpinnerInIcon?: boolean; onClose?: (e: { stopPropagation: VoidFunction; }) => void; title?: string; }; export declare const DefaultPromptLayout: FC; export declare const DefaultPromptModal: FC; export {};