import * as React from 'react'; import { DisclosureProps as ReakitDisclosureProps } from 'reakit'; import { BoxProps } from '../Box'; export declare type LocalDisclosureProps = {}; export declare type DisclosureProps = BoxProps & ReakitDisclosureProps & LocalDisclosureProps; export declare const Disclosure: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };