textInputPredicate: z.ZodObject<{ type: z.ZodLiteral<ComponentType.TextInput>; custom_id: z.ZodString; label: z.ZodString; style: z.ZodNativeEnum<typeof TextInputStyle>; min_length: z.ZodOptional<z.ZodNumber>; max_length: z.ZodOptional<z.ZodNumber>; placeholder: z.ZodOptional<z.ZodString>; value: z.ZodOptional<z.ZodString>; required: z.ZodOptional<z.ZodBoolean>;}, "strip", z.ZodTypeAny, { type: ComponentType.TextInput; style: TextInputStyle; custom_id: string; label: string; required?: boolean | undefined; value?: string | undefined; placeholder?: string | undefined; min_length?: number | undefined; max_length?: number | undefined;}, { type: ComponentType.TextInput; style: TextInputStyle; custom_id: string; label: string; required?: boolean | undefined; value?: string | undefined; placeholder?: string | undefined; min_length?: number | undefined; max_length?: number | undefined;}>