/** * Interface que representa la configuración de colores */ export declare class ColorsConfiguration { buttonColor: string; borderColor: string; fontColor?: string; borderRadius?: string; constructor(buttonColor: string, borderColor: string, fontColor?: string, borderRadius?: string); }