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