import type { JSX } from 'solid-js'; import type { DisclosureStateControlledOptions, DisclosureStateRenderProps, DisclosureStateUncontrolledOptions } from '../../states/create-disclosure-state'; import type { UnmountableProps } from '../../utils/create-unmountable'; import type { HeadlessProps, ValidConstructor } from '../../utils/dynamic-prop'; import type { Prettify } from '../../utils/types'; export type DialogControlledBaseProps = Prettify; export type DialogControlledProps = HeadlessProps; export type DialogUncontrolledBaseProps = Prettify; export type DialogUncontrolledProps = HeadlessProps; export type DialogProps = DialogControlledProps | DialogUncontrolledProps; export declare function Dialog(props: DialogProps): JSX.Element; //# sourceMappingURL=Dialog.d.ts.map