import type { Unrecognized } from "./../../utils/unrecognized.js"; import type { OneLineAddress } from "./../common/OneLineAddress.js"; import type { SeparatedAddress } from "./../common/SeparatedAddress.js"; /** * 분리 형식 주소 * * oneLine(한 줄 형식 주소) 필드는 항상 존재합니다. */ export type Address = /** 한 줄 형식 */ OneLineAddress /** 분리 형식 */ | SeparatedAddress | { readonly type: Unrecognized; }; export declare function isUnrecognizedAddress(entity: Address): entity is { readonly type: Unrecognized; };