/**
 * Provides an adaptor to launch from UI Service Generator
 */
import type { Adaptor } from './types';
import type { Floorplan } from '@sap-ux/fiori-app-sub-generator';
export interface ServiceGeneratorInput {
    type: string;
    system: {
        url: string;
        client: string;
        destination: string;
    };
    service: {
        url: string;
        metadata: string;
    };
    project?: {
        targetPath: string;
        name: string;
    };
    excludeFloorplans?: Floorplan[];
}
export declare const ServiceGeneratorAdaptor: Adaptor;
//# sourceMappingURL=service-generator.d.ts.map