import type { ComponentProps, FunctionComponent } from 'react'; import { Modal } from '../Modal/Modal'; export declare enum ESize { Skinny = "skinny",// 420px wide Narrow = "narrow",// 600px wide Standard = "standard" } type Size = 'skinny' | 'narrow' | 'standard'; export interface StandardModalProps extends ComponentProps { size?: ESize | Size; className?: string; title: string; } export declare const StandardModal: FunctionComponent; export {}; //# sourceMappingURL=StandardModal.d.ts.map