import { FC, ReactNode } from 'react'; export interface CollapsibleProps { /** * Controls whether the collapsible content is expanded. * If provided, the component acts as a controlled component. */ open?: boolean; /** * Callback fired when the open state changes. * Called with the next boolean value when toggled. */ onChangeOpen?: (value: boolean) => void; /** * Optional callback that fires when the hidden (visibility) state changes. * This can differ from `open` if animations or delays are used. */ onChangeHidden?: (value: boolean) => void; /** * The content to render inside the collapsible container. * Can be a single node or a list of React nodes. */ children?: ReactNode | ReactNode[]; } /** The Collapsible component toggles visibility of its content, supporting controlled state and optional lifecycle callbacks for open and hidden changes */ export declare const Collapsible: FC;