import { z } from 'zod'; import { InputBlockType } from './enums'; export declare const phoneNumberInputOptionsSchema: z.ZodObject<{ variableId: z.ZodOptional; } & { labels: z.ZodObject<{ placeholder: z.ZodString; button: z.ZodString; }, "strip", z.ZodTypeAny, { button: string; placeholder: string; }, { button: string; placeholder: string; }>; buttonIconUrl: z.ZodOptional>; } & { retryMessageContent: z.ZodString; defaultCountryCode: z.ZodOptional; }, "strip", z.ZodTypeAny, { labels: { button: string; placeholder: string; }; retryMessageContent: string; variableId?: string | undefined; buttonIconUrl?: string | null | undefined; defaultCountryCode?: string | undefined; }, { labels: { button: string; placeholder: string; }; retryMessageContent: string; variableId?: string | undefined; buttonIconUrl?: string | null | undefined; defaultCountryCode?: string | undefined; }>; export declare const phoneNumberInputBlockSchema: z.ZodObject<{ id: z.ZodString; groupId: z.ZodString; outgoingEdgeId: z.ZodOptional; } & { type: z.ZodEnum<[InputBlockType.PHONE]>; options: z.ZodObject<{ variableId: z.ZodOptional; } & { labels: z.ZodObject<{ placeholder: z.ZodString; button: z.ZodString; }, "strip", z.ZodTypeAny, { button: string; placeholder: string; }, { button: string; placeholder: string; }>; buttonIconUrl: z.ZodOptional>; } & { retryMessageContent: z.ZodString; defaultCountryCode: z.ZodOptional; }, "strip", z.ZodTypeAny, { labels: { button: string; placeholder: string; }; retryMessageContent: string; variableId?: string | undefined; buttonIconUrl?: string | null | undefined; defaultCountryCode?: string | undefined; }, { labels: { button: string; placeholder: string; }; retryMessageContent: string; variableId?: string | undefined; buttonIconUrl?: string | null | undefined; defaultCountryCode?: string | undefined; }>; }, "strip", z.ZodTypeAny, { id: string; type: InputBlockType.PHONE; groupId: string; options: { labels: { button: string; placeholder: string; }; retryMessageContent: string; variableId?: string | undefined; buttonIconUrl?: string | null | undefined; defaultCountryCode?: string | undefined; }; outgoingEdgeId?: string | undefined; }, { id: string; type: InputBlockType.PHONE; groupId: string; options: { labels: { button: string; placeholder: string; }; retryMessageContent: string; variableId?: string | undefined; buttonIconUrl?: string | null | undefined; defaultCountryCode?: string | undefined; }; outgoingEdgeId?: string | undefined; }>; export declare const defaultPhoneInputOptions: PhoneNumberInputOptions; export type PhoneNumberInputBlock = z.infer; export type PhoneNumberInputOptions = z.infer; //# sourceMappingURL=phone.d.ts.map