import { ReactNode } from 'react'; import type { SystemProps } from "../../../lib"; declare type ModalProps = { isOpen: boolean; close(any: any): void; ariaLabel?: string; header?: ReactNode; footer?: ReactNode; children?: ReactNode; } & SystemProps; export declare const ModalBase: ({ children, ariaLabel, isOpen, close, }: ModalProps) => JSX.Element; export declare const Modal: ({ children, header, footer, ...props }: ModalProps) => JSX.Element; export {};