export interface Area {
    name: string;
    locality: string;
    county: string;
}
export declare const areas: Area[];
