import { ConfigSettingType } from '../../sections'; import { PageName } from './page-config.types'; export type ThemeSettingsConfig = { _id: string | null; agencyId: number; theme: string; settings: T; }; export type DefaultThemeSettings = { [settingName: string]: ThemeSetting; }; export type ThemeSettingValue = string | number | boolean | string[]; export type ThemeSetting = { type: ConfigSettingType; description: string; value?: ThemeSettingValue; options?: { label: string; value: string; }[]; pages?: PageName[]; }; //# sourceMappingURL=theme-settings.types.d.ts.map