declare const schema: { $schema: string; type: string[]; properties: { locale: { anyOf: { type: string; }[]; }; origin: { anyOf: { type: string; }[]; }; tokens: { anyOf: ({ type: string; items: { type: string; }; uniqueItems: boolean; } | { type: string; items?: undefined; uniqueItems?: undefined; })[]; }; }; additionalProperties: boolean; }; export default schema;