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