import type { AccordionColors } from './accordion.theme';
import type { DeepPartial, FlowbiteBoolean, FlowbiteClass } from 'flowbite-angular';
/**
 * Required properties for the class generation of `AccordionContentComponent`
 */
export interface AccordionContentProperties {
    color: keyof AccordionColors;
    isFlush: keyof FlowbiteBoolean;
    customStyle: DeepPartial<AccordionContentTheme>;
}
/**
 * Theme definition for `AccordionContentComponent`
 */
export interface AccordionContentTheme {
    root: {
        base: string;
        color: AccordionColors;
        isFlush: FlowbiteBoolean;
    };
}
/**
 * Default theme for `AccordionContentComponent`
 */
export declare const accordionContentTheme: AccordionContentTheme;
/**
 * Generated class definition for `AccordionContentComponent`
 */
export type AccordionContentClass = FlowbiteClass;
