import { CSSProperties, ReactNode, SyntheticEvent } from 'react'; type ModalBasicProps = { hideBackdrop?: boolean; style?: CSSProperties; confirmationMode?: boolean; open?: boolean; title?: string; variant?: 'notification' | 'alert' | 'informative' | 'custom'; type?: 'success' | 'error' | 'warning' | 'informative'; onConfirm?: (a: SyntheticEvent) => unknown; onClose?: (a: SyntheticEvent) => unknown; children?: ReactNode; ubication?: 'center' | 'top' | 'bottom' | 'right' | 'left' | 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; }; export default ModalBasicProps; //# sourceMappingURL=type.d.ts.map