import * as CollapsiblePrimitive from "@radix-ui/react-collapsible"; import React from "react"; import { IconProps } from "../../icons"; export type CollapsibleProps = Omit & Omit & { content: React.ReactNode; size?: "sm" | "md" | "lg"; locked?: boolean; overrides?: { Icon?: IconProps; }; toggleClosedDirection?: "down" | "right"; }; /** * An interactive component which expands/collapses a panel. This is a low-level component that other * collapsibles/panels build on top of. */ export declare const Collapsible: React.ForwardRefExoticComponent & Omit & { content: React.ReactNode; size?: "sm" | "md" | "lg"; locked?: boolean; overrides?: { Icon?: IconProps; }; toggleClosedDirection?: "down" | "right"; } & React.RefAttributes>; //# sourceMappingURL=Collapsible.d.ts.map