import type { Annotations } from '@sap-ux/axios-extension';
import type { Adaptor } from './types';
export interface ADTInput {
    type: string;
    service: {
        serviceUrl: string;
        edmx: string;
        destination?: string;
        scp?: boolean;
        authenticationType?: string;
    };
    annotations?: Annotations[];
    entityConfig: {
        mainEntity: {
            entityName?: string;
        };
    };
}
/**
 * Provides an adaptor to launch from Eclipse
 */
export declare const AdtAdaptor: Adaptor;
//# sourceMappingURL=adt.d.ts.map