import { ApiException } from './apiException';
import { Select } from './select';
import { SelectResponse } from './selectResponse';
import { SoapClient } from '../../soap/soapClient';
export interface PublisherQueryLanguageService extends SoapClient {
    select(select: Select): Promise<SelectResponse>;
    select(select: Select, cb: (err: ApiException, selectResponse: SelectResponse) => void): void;
}
