import { z } from 'zod'; import { QuestionDefinition } from '../core'; declare const TextInput: "TextInput"; export type TextInputComponentType = typeof TextInput; export interface TextInputComponentDefinition extends QuestionDefinition { placeholder?: string; } export declare const TextInputSchema: z.ZodObject<{ type: z.ZodLiteral<"TextInput">; questionId: z.ZodString; label: z.ZodString; placeholder: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "TextInput"; questionId: string; label: string; placeholder?: string | undefined; }, { type: "TextInput"; questionId: string; label: string; placeholder?: string | undefined; }>; export {}; //# sourceMappingURL=text-input.d.ts.map