import * as React from 'react'; import type { QAProps } from "../../types.js"; export interface DisclosureSummaryRenderFunctionProps extends QAProps { onClick: (e: React.SyntheticEvent) => void; ariaControls: string; id: string; expanded: boolean; onKeyDown?: (e: React.KeyboardEvent) => void; disabled?: boolean; className?: string; } export interface DisclosureSummaryProps extends QAProps { children: (props: DisclosureSummaryRenderFunctionProps, defaultSummary: React.ReactElement) => React.ReactElement; } export declare function DisclosureSummary({ children: renderFunction, qa }: DisclosureSummaryProps): React.ReactElement>; export declare namespace DisclosureSummary { var displayName: string; } export declare const DefaultDisclosureSummary: React.ForwardRefExoticComponent>;