import type { HTMLAttributes, ReactNode } from 'react';
export type DetailsSummaryProps = {
/** Heading text */
children: ReactNode;
} & HTMLAttributes;
/**
* Details summary component, contains a the heading to toggle the content.
*
* @example
* Heading
*/
export declare const DetailsSummary: import("react").ForwardRefExoticComponent<{
/** Heading text */
children: ReactNode;
} & HTMLAttributes & import("react").RefAttributes>;
//# sourceMappingURL=details-summary.d.ts.map