import React, { ComponentProps } from 'react'; import { FocusOn } from 'react-focus-on'; import './Modal.scss'; export type ModalProps = React.HTMLAttributes & { onClose(): void; shards?: ComponentProps['shards']; autoFocus?: boolean; 'aria-label'?: string; 'aria-labelledby'?: string; }; export declare const Modal: React.FC;