/// <reference types="react" />
/**
 * Low level component, use `<Details>` component if possiable
 */
export declare const Collapsible: import("react").ForwardRefExoticComponent<{
    expanded?: boolean | undefined;
    children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "expanded"> & import("react").RefAttributes<HTMLDivElement>>;
