import { Field } from "../field"; /** Validate that value is a valid ISO3166-1 alpha-2 country code. */ export declare function isCountry(value?: string): string; export declare class CountryField extends Field { validate(value: string): string; }