declare const schema: { $schema: string; type: string[]; properties: { key: { anyOf: { type: string; }[]; }; secret: { anyOf: { type: string; }[]; }; }; additionalProperties: boolean; }; export default schema;