///
import { type ElementProps } from '../../../types/element/elementProps';
export type CollapsibleOwnProps = {
disabled?: boolean;
show?: boolean;
defaultShow?: boolean;
onChangeShow?: (open: boolean) => void;
};
export type CollapsibleProps = React.PropsWithChildren>;
export declare const Collapsible: import("react").ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children">, keyof CollapsibleOwnProps> & CollapsibleOwnProps & {
children?: import("react").ReactNode;
} & import("react").RefAttributes>;
//# sourceMappingURL=Collapsible.d.ts.map