import { z } from 'zod'; export declare const E164_PHONE_REGEX: RegExp; export declare const E164_PHONE_OR_EMPTY_REGEX: RegExp; export type E164PhoneOptions = { allowEmpty?: boolean; }; export declare const makeZE164Phone: (zod: typeof z, options?: E164PhoneOptions) => z.ZodString; export declare const zE164Phone: (options?: E164PhoneOptions) => z.ZodString; //# sourceMappingURL=e164Phone.d.ts.map