import { WildduckClientComponent } from "../../client-component"; import { IWildduckApiCreateASPRequest, IWildduckApiCreateASPResponse, IWildduckApiGetASPResponse, IWildduckApiGetASPsResponse, IWildduckApiSuccessResponse } from "../../client-schema"; export declare class WildduckApplicationPasswordsService extends WildduckClientComponent { deleteApplicationPassword(user: string, asp: string): Promise; getApplicationPassword(user: string, asp: string): Promise; getApplicationPasswords(user: string): Promise; createApplicationPassword(user: string, dto: IWildduckApiCreateASPRequest): Promise; }