import React from 'react'; import type { BoxBaseProps } from '../../layout'; import { type VStackDefaultElement, type VStackProps } from '../../layout/VStack'; export type OverlayBaseProps = BoxBaseProps & { /** Animate overlay * @default false */ animated?: boolean; }; export type OverlayProps = OverlayBaseProps & VStackProps & { onClick?: React.MouseEventHandler; }; export declare const OverlayContent: React.ForwardRefExoticComponent< Omit & React.RefAttributes >; //# sourceMappingURL=OverlayContent.d.ts.map