import { IManagementClientConfig } from '../../config';
import { CustomAppsResponses } from '../../responses';
import { ManagementQueryService } from '../../services';
import { BaseListingQuery } from '../base-listing-query';
export declare class ListCustomAppsQuery extends BaseListingQuery<CustomAppsResponses.CustomAppsListResponse, CustomAppsResponses.CustomAppsListAllResponse> {
    protected config: IManagementClientConfig;
    protected queryService: ManagementQueryService;
    constructor(config: IManagementClientConfig, queryService: ManagementQueryService);
    toPromise(): Promise<CustomAppsResponses.CustomAppsListResponse>;
    protected getAction(): string;
    protected allResponseFactory(items: any[], responses: CustomAppsResponses.CustomAppsListResponse[]): CustomAppsResponses.CustomAppsListAllResponse;
}
