import type { FunctionComponent } from 'react'; import { type DialogProps, type DialogTriggerProps } from 'react-aria-components'; export interface Dialog2Props extends DialogProps { width?: keyof typeof widthClassNameMap; height?: keyof typeof heightClassNameMap; } interface Dialog2Component extends FunctionComponent { Trigger: FunctionComponent; } declare const widthClassNameMap: { narrow: string; wide: string; }; declare const heightClassNameMap: { fill: string; }; export declare const Dialog2: Dialog2Component; export {};