import { Field } from "../field";
/** Validate that value is a valid time zone supported by 'luxon' library. */
export declare function isTimeZone(value?: string): string;
export declare class TimeZoneField extends Field<string> {
    validate(value: string): string;
}
