import React from 'react'; interface Props { /** * Gives the modal an accessible name by passing the element id that provides the modal title */ ariaLabelledBy: string; /** * Gives the modal an accessible description by passing the element id that provides a longer text description */ ariaDescribedBy?: string; open: boolean; closeButtonColor?: string; closeButtonText?: string; setOpen: (open: boolean) => void; size?: 'small' | 'medium' | 'large' | 'fullscreen'; className?: string; /** * If you want to return focus to a specific html element on closing the modal. Default is the modal trigger element. */ returnFocusTo?: HTMLElement | null; children?: React.ReactNode; modalPortal?: HTMLDivElement; } export declare const Modal: React.FC; export declare const InfoModal: React.FC; export {};