/**
 * Interface for custom themes.
 *
 * @interface CustomThemes
 * @property {string} light - The color scheme for the light theme.
 * @property {string} dark - The color scheme for the dark theme.
 */
export interface CustomThemes {
    light: string;
    dark: string;
}
//# sourceMappingURL=theme.d.ts.map