import type { Destination } from '@sap-ux/btp-utils'; /** * Generate a destination name based on the service path. * Remove leading & trailing '/'. Substitute '/' for '_'. * * @param prefix - prefixes the dest name * @param servicePath - used to create a meaningful dest name * @returns destination name */ export declare function generateDestinationName(prefix: string, servicePath?: string): string; /** * Get the destination with the specified name. * * @param destName - name of the destination * @returns destination object */ export declare function getDestination(destName?: string): Promise; //# sourceMappingURL=destination.d.ts.map