export interface TAG {
    name: string;
}
export declare class EndPoint {
    id: number;
    name: string;
    address: string;
    user: string;
    credentialType: string;
    credential: string;
    description: string;
    tokenAPI: string;
    tokenAPIProperty: string;
    tokenAPIHeader: string;
    tags: any;
    constructor(name: string, address: string, user: string, credential: string, credentialType: string, description: string, tokenAPI: string, tokenAPIProperty: string, tokenAPIHeader: string, tags: any);
}
export declare const credentialScheme: string[];
