import React from 'react'; import { ReactNode } from 'react'; export type ModalProps = { open: boolean; onClose: (e: any) => void; closeButtonIcon?: string | React.ReactNode; closeButtonIconSize?: 'mini' | 'tiny' | 'small' | 'large' | 'big' | 'huge' | 'massive'; closeButtonIconColor?: string; children: ReactNode; ariaModalLabel: string; ariaCloseLabel?: string; appendClassName?: string; }; export declare const Modal: ({ open, onClose, children, ariaModalLabel, ariaCloseLabel, closeButtonIcon, closeButtonIconSize, closeButtonIconColor, appendClassName }: ModalProps) => JSX.Element | null;