import { ReactNode } from 'react'; export interface AccordionProps { /** Clickable title (always visible). */ title: ReactNode; /** Main content (hidden when expanded is false). */ content: ReactNode; /** Indicator if Accordion should be expanded by default.*/ expanded?: boolean; /** Indicator for cheveron icon placement.*/ cheveronPlacement?: 'left' | 'right'; /** Indicator for cheveron icon margin. By default '050'. */ cheveronMargin?: '0' | '025' | '050' | '075' | '100' | '150' | '200'; } export interface AccordionMethods { closeContent: () => void; openContent: () => void; } /** A controller for accordion display toggling of content with click on a title. */ export declare const Accordion: import('react').ForwardRefExoticComponent>;