import { APIResponse } from './endpoint';
export declare type Address = {
    prefectureCode: string;
    prefecture: string;
    address1: string;
    address2: string;
    address3: string;
    address4: string;
};
export declare const sanitize: (code: string | number) => [string, string];
export declare const makeRequestURL: ([first, second]: [string, string]) => string;
export declare type ParseResponse<T, R> = (res: R) => T;
export declare const parseResponse: ParseResponse<Address, APIResponse>;
