import { Areas } from '@vepler/area-reference-types';
export interface GetAreasParams extends Areas.GetAreasQueryParams {
    field: string;
    ids?: string[];
}
export declare function getAreas(params: GetAreasParams): Promise<Areas.GetAreasResponse>;
