import Joi from 'joi'; export declare enum AuthenticationType { OAuth = "oauth", Basic = "basic", ApiKey = "apikey" } export declare class AuthIdentifier { AuthenticationType: AuthenticationType; Version?: string; IsSandbox?: boolean; } export declare const AuthIdentifierSchema: Joi.ObjectSchema;