import { CardHeaderBackground, CardHeaderProps } from '../../card'; export interface AccordionItemHeaderProps extends Omit { /** * Name on the button to open the item */ openText?: string; /** * Name on the button to close the item */ closeText?: string; /** * Background color of accordion header. * In addition to the values supported by CardHeader, we also support some dynamic values that have different colors for open/close states. * @default white */ background?: 'primary' | 'white/primary' | 'muted/primary' | CardHeaderBackground; } /** * @deprecated Use `` from the TEDI-Ready Accordion (`@tedi-design-system/react/tedi`) instead. */ export declare const AccordionItemHeader: (props: AccordionItemHeaderProps) => JSX.Element; export default AccordionItemHeader;