import { Id, Value } from '@thisisagile/easy'; import { Country } from '../enums/Country'; export declare class PostalCode extends Value { readonly country: Country | Id; constructor(postalCode?: unknown, country?: Country | Id); get isValid(): boolean; } export declare const postalCode: (postalCode?: unknown, country?: Country | Id) => PostalCode;