declare const WysiwygConfigSchema: { $schema: string; type: string; properties: { theme: { type: string; properties: { lockedColorMode: { type: string[]; enum: string[]; }; font: { type: string; properties: { base: { type: string; }; }; required: string[]; }; palette: { type: string; properties: { dark: { $ref: string; }; light: { $ref: string; }; }; required: string[]; }; }; required: string[]; }; pages: { type: string; properties: { template: { type: string; }; structure: { type: string; items: { $ref: string; }; }; }; required: string[]; }; }; required: string[]; definitions: { modePalette: { type: string; properties: { primary: { $ref: string; }; secondary: { $ref: string; }; background: { type: string; properties: { paper: { type: string; }; default: { type: string; }; }; required: string[]; }; success: { $ref: string; }; warning: { $ref: string; }; error: { $ref: string; }; info: { $ref: string; }; action: { type: string; properties: { active: { type: string; }; }; required: string[]; }; text: { type: string; properties: { primary: { type: string; }; secondary: { type: string; }; money: { type: string; }; disabled: { type: string; }; }; required: string[]; }; divider: { type: string; }; perks: { type: string; properties: { level1: { type: string; }; level2: { type: string; }; level3: { type: string; }; level4: { type: string; }; level5: { type: string; }; }; required: string[]; }; avatar: { type: string; properties: { avatar1: { type: string; }; avatar2: { type: string; }; avatar3: { type: string; }; avatar4: { type: string; }; avatar5: { type: string; }; avatar6: { type: string; }; avatar7: { type: string; }; avatar8: { type: string; }; }; required: string[]; }; }; }; color: { type: string; properties: { main: { type: string; }; light: { type: string; }; dark: { type: string; }; }; required: string[]; }; wysiwygConfigComponent: { type: string; properties: { id: { type: string; }; name: { type: string; }; props: { type: string; }; }; required: string[]; }; wysiwygConfigPage: { type: string; properties: { id: { type: string; }; name: { type: string; enum: string[]; }; props: { type: string; properties: { elements: { type: string; items: { $ref: string; }; }; }; required: string[]; }; }; required: string[]; }; }; }; export default WysiwygConfigSchema;