import { Founder } from "../db/types";
import { DbMunicipalityResult, MunicipalityPartResult } from "./types";
export declare const isMunicipalitySwitch: (line: string) => boolean;
export declare const getSwitchMunicipality: (line: string, founder: Founder) => Promise<DbMunicipalityResult>;
export declare const isWholeMunicipality: (line: string) => boolean;
export declare const isRestWithNoStreetNameLine: (line: string) => boolean;
export declare const isRestOfMunicipalityLine: (line: string) => boolean;
export declare const isRestOfMunicipalityPartLine: (line: string) => boolean;
export declare const getRestOfMunicipalityPart: (line: string, founder: Founder) => Promise<MunicipalityPartResult>;
export declare const getWholeMunicipality: (line: string, founder: Founder) => Promise<DbMunicipalityResult>;
export declare const getMunicipalityPartResult: (name: string, line: string, cityCode: number) => Promise<MunicipalityPartResult>;
