import Joi from 'joi'; /** * @internal */ export declare const themeSchema: Joi.ObjectSchema; type Colors = { primary: string; secondary: string; accent: string; error: string; warning: string; info: string; success: string; neutral: string; }; /** * @internal */ export type Theme = { light: Colors; dark?: Colors; }; export {};