export interface PostalCode {
    id: string;
    parent_id?: string | null;
    label: string | null;
    country: string;
    code?: string | null;
}
//# sourceMappingURL=postalCodes.d.ts.map