export declare type DisclosureProps = { /** Title text for the disclosure panel. */ title: string; /** Details text to disclose. */ details: string; }; /** A simple, accessible foundation for building custom UIs that show and hide content, like togglable accordion panels. */ export declare const Disclosure: ({ title, details }: DisclosureProps) => JSX.Element;