///
interface ModalProps {
/**
* Children to display within the Modal
*/
children: React.ReactNode;
/**
* Label to use for button to close modal
*/
closeButtonLabel: string;
/**
* Boolean for whether modal is open or closed
*/
open: boolean;
/**
* Function to open or close the modal
*/
setOpen: React.Dispatch>;
}
export default function Modal({ children, closeButtonLabel, open, setOpen }: ModalProps): JSX.Element;
export {};