export declare type response = { city: string; pref: string; town: string; zipcode: string; }; export declare type responses = response[]; export declare type requestSearchAddressFromZipcode = { zipcode: string; is_exact?: boolean; }; export declare type requestSearchZipcodeFromAddress = { address: string; is_exact?: boolean; is_left?: boolean; }; export declare type options = { limit?: number; is_hyphen?: boolean; };