import { IMindConnectConfiguration } from "../../mindconnect-models";
export interface MindSphereCredentials {
    basicAuth: string;
    gateway: string;
    tenant: string;
}
export interface AgentCredentials extends IMindConnectConfiguration {
}
export interface ServiceCrendtials extends MindSphereCredentials {
    subTenant?: string;
}
export interface AppCredentials extends MindSphereCredentials {
    appName: string;
    appVersion: string;
    usertenant: string;
}
export declare function isAgentAuth(obj: any): boolean;
export declare function isAppCredentials(obj: any): boolean;
export declare function isServiceCredentials(obj: any): boolean;
