/** Development service account information */ export interface DevServiceAccount { clientId: string; clientSecret: string; serviceAccountName: string; } /** * This function creates a new service account which can be used during development. * @param authEndpoint URL for id-service authEndpoint. * @param serviceAccountName Name of the service account. * @param permissions The list of permissions to be assigned to the service account. This is an array of shape { serviceId: string, permissions: string[] }. * @returns {DevServiceAccount} New development service account information. */ export declare const devCreateServiceAccount: (authEndpoint: string, serviceId: string, serviceAccountName: string, tenantId: string, environmentId: string, permissions: { serviceId: string; permissions?: string[]; }[]) => Promise; //# sourceMappingURL=dev-create-service-account.d.ts.map