import { BaseSearch } from './BaseSearch';
import { PlacesRequest, PlacesFieldsRequest, GooglePlaceBaseResponse, PlacesDetailsResult } from '../types';
export interface FindByTextSearchRequest extends PlacesRequest, PlacesFieldsRequest {
    input: string;
    inputtype: 'textquery' | 'phonenumber';
    language?: string;
    locationbias?: 'ipbias' | string;
}
export interface FindByTextSearchResponse extends GooglePlaceBaseResponse {
    candidates: PlacesDetailsResult[];
}
export declare class FindByTextSearch extends BaseSearch<FindByTextSearchRequest> {
}
