export declare class ConstantValidator { private schemeSet; private constructor(); static fromValues(opts: { values: Array | Set; }): ConstantValidator; isValid(input: T): boolean; } export declare class ConfigurationDataTypes { static readonly NUMBER = "NUMBER"; static readonly TEXT = "TEXT"; static readonly BYTE = "BYTE"; static readonly JSON = "JSON"; static readonly BOOLEAN = "BOOLEAN"; static readonly SCHEME_SET: Set; static isValid(orgType: string): boolean; } //# sourceMappingURL=configurations.d.ts.map