import { FC, HTMLAttributes, Ref } from 'react'; export interface CollapsibleTriggerProps extends HTMLAttributes { /** * If true, renders the trigger as a child component using `Slot` (e.g. or
). * This allows custom semantics or styling while preserving collapsible behavior. */ asChild?: boolean; /** * Ref forwarded to the native trigger element (typically a button). */ ref?: Ref; } /** The CollapsibleTrigger component is the interactive element—typically a button or custom slot—that toggles the open or closed state of a Collapsible section */ export declare const CollapsibleTrigger: FC;