export interface Destination {
    Name: string;
    Host: string;
    WebIDEUsage: string;
    Authentication: string;
    ProxyType: string;
    "sap-client": string;
}
export interface DestinationError {
    message: string;
}
export interface DestinationInfo {
    adaptationProjectTypes: string[];
    activeLanguages: Language[];
}
interface Language {
    sap: string;
    description: string;
    i18n: string;
}
export interface LocalDestinationAuthDetails {
    username: string;
    password: string;
    url: string;
    client: string;
    authenticationType?: string;
}
export {};
