/** * Custom styles for the accordion component * Edit this file to customize the appearance */ export interface AccordionClasses { container: string; header: string; content: string; tab: { active: string; inactive: string; disabled: string; }; icon: { expand: string; collapse: string; }; } export declare const defaultClasses: AccordionClasses;