import { ComponentPropsWithoutRef } from 'react'; /** * Props for the DetailsSummary component * @extends ComponentPropsWithoutRef<"button"> */ export type DetailsSummaryProps = ComponentPropsWithoutRef<"button">; /** * DetailsSummary component for the clickable header of a Details section. * * Features: * - Clickable button that toggles the Details expanded state * - Automatic ARIA attributes for accessibility * - Includes animated arrow indicator * - Supports custom onClick handlers * - Keyboard navigation support (Enter, Space) * - Styled with consistent typography and spacing * * @example * console.log('Summary clicked')}> * Click to expand content * */ export declare const DetailsSummary: import('react').ForwardRefExoticComponent, HTMLButtonElement>, "ref"> & import('react').RefAttributes>;