import { ReactNode } from 'react'; export interface Props { /** Content to be wrapped */ children: ReactNode; /** Label for the header */ label: string; /** whether or not there should be padding on content */ padding?: string; /** whether or not it's nested under another collapsing content */ isNested?: boolean; /** whether or not the content is collapsed. Default is false */ collapsed?: boolean; /** on click callback */ onHeaderClick?: () => void; /** whether or not to normalize the label */ normalizeLabel?: boolean; } export declare const CollapsingContent: ({ children, label, padding, isNested, collapsed, onHeaderClick, normalizeLabel, }: Props) => JSX.Element;