import Joi from 'joi';
export declare enum AuthenticationType {
    OAuth = "oauth"
}
export declare class AuthIdentifier {
    AuthenticationType: AuthenticationType;
    Version?: string;
    IsSandbox?: boolean;
}
export declare const AuthIdentifierSchema: Joi.ObjectSchema<any>;
