import { IManagementClientConfig } from '../../config';
import { CustomAppModels, Identifiers } from '../../models';
import { CustomAppsResponses } from '../../responses';
import { ManagementQueryService } from '../../services';
import { BaseQuery } from '../base-query';
export declare class ModifyCustomAppQuery extends BaseQuery<CustomAppsResponses.ModifyCustomAppResponse> {
    protected config: IManagementClientConfig;
    protected queryService: ManagementQueryService;
    identifier: Identifiers.CustomAppIdentifier;
    data: CustomAppModels.ModifyCustomAppOperation[];
    constructor(config: IManagementClientConfig, queryService: ManagementQueryService, identifier: Identifiers.CustomAppIdentifier, data: CustomAppModels.ModifyCustomAppOperation[]);
    toPromise(): Promise<CustomAppsResponses.ModifyCustomAppResponse>;
    protected getAction(): string;
}
