declare const addressparsing: (val: any) => Promise<{
    province: string;
    city: string;
    county: string;
}>;
export { addressparsing };
