import { z } from 'zod';
export declare const phoneInputSchema: z.ZodEffects<z.ZodString, string, string>;
export declare const phoneInputOptionalSchema: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | null | undefined, string | null | undefined>;