import { FC, PropsWithChildren } from 'react'; import { CollapsibleTriggerProps } from '../../../Collapsible'; export type AccordionTriggerProps = CollapsibleTriggerProps; /** * AccordionTrigger is a button used to toggle the visibility of an AccordionItem. * It renders inside a heading tag and optionally displays an arrow icon. * Supports custom size, styling, and icon overrides. */ export declare const AccordionTrigger: FC>;