export interface IProvince {
    code: number | string;
    city: string;
}
export interface INationalId extends IProvince {
    parentCode: number;
}
export interface IPlaceByNationalId {
    codes: number[] | string[];
    city: string;
    province: string;
}
declare function getPlaceByIranNationalId(nationalId?: string): IPlaceByNationalId | null | undefined;
export default getPlaceByIranNationalId;
