export type StyleObject = Partial; export interface ICustomizationOptions { colorPrimary?: string; colorBackground?: string; colorText?: string; borderRadius?: number; fontFamily?: string; inputBackgroundColor?: string; inputBorderColor?: string; } export type CustomizationOptionsType = { [key in keyof ICustomizationOptions]: string; }; export type Locale = "en" | "fr" | "es" | "it" | "de" | "ja" | "ko" | "zh"; export declare const DEFAULT_BRAND_OPTIONS: { colorPrimary: string; colorBackground: string; colorText: string; borderRadius: number; fontFamily: string; }; //# sourceMappingURL=style.d.ts.map