import { IManagementClientConfig } from '../../config'; import { Identifiers } from '../../models'; import { BaseResponses } from '../../responses'; import { ManagementQueryService } from '../../services'; import { BaseQuery } from '../base-query'; export declare class DeleteCustomAppQuery extends BaseQuery { protected config: IManagementClientConfig; protected queryService: ManagementQueryService; identifier: Identifiers.CustomAppIdentifier; constructor(config: IManagementClientConfig, queryService: ManagementQueryService, identifier: Identifiers.CustomAppIdentifier); toPromise(): Promise; protected getAction(): string; }