import { Component } from 'react'; import type { MaskProps } from './props'; /** --- category: components/utilities --- **/ declare class Mask extends Component { static readonly componentId = "Mask"; static allowedProps: readonly (keyof { children?: React.ReactNode; placement?: "top" | "center" | "bottom" | "stretch"; fullscreen?: boolean; onClick?: (event: React.MouseEvent) => void; elementRef?: (element: Element | null) => void; })[]; static defaultProps: { placement: string; fullscreen: boolean; }; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; ref: Element | null; handleElementRef: (el: Element | null) => void; _content: any; contentRef: React.LegacyRef; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default Mask; export { Mask }; //# sourceMappingURL=index.d.ts.map