import * as React from "react"; import { DisclosureOptions, DisclosureHTMLProps } from "../Disclosure/Disclosure"; import { DialogStateReturn } from "./DialogState"; export declare type DialogDisclosureOptions = DisclosureOptions & Pick, "unstable_disclosureRef"> & Pick; export declare type DialogDisclosureHTMLProps = DisclosureHTMLProps; export declare type DialogDisclosureProps = DialogDisclosureOptions & DialogDisclosureHTMLProps; export declare const useDialogDisclosure: { (options?: DialogDisclosureOptions | undefined, htmlProps?: import("..").ButtonHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): import("..").ButtonHTMLProps; unstable_propsAreEqual: (prev: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "visible"> & Pick & Pick, "unstable_disclosureRef"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.ButtonHTMLAttributes, next: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "visible"> & Pick & Pick, "unstable_disclosureRef"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.ButtonHTMLAttributes) => boolean; __keys: readonly any[]; __useOptions: (options: DialogDisclosureOptions, htmlProps: import("..").ButtonHTMLProps) => DialogDisclosureOptions; }; export declare const DialogDisclosure: import("reakit-system/ts/createComponent").Component<"button", DialogDisclosureOptions>;