import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const askTextSchema: z.ZodObject<{ name: z.ZodString; label: z.ZodString; description: z.ZodOptional; required: z.ZodOptional; silent: z.ZodOptional; default: z.ZodOptional; placeholder: z.ZodOptional; }, z.core.$loose>; export type TextProps = z.infer & { children?: PuptNode; }; export declare class AskText extends Component { static schema: z.ZodObject<{ name: z.ZodString; label: z.ZodString; description: z.ZodOptional; required: z.ZodOptional; silent: z.ZodOptional; default: z.ZodOptional; placeholder: z.ZodOptional; }, z.core.$loose>; resolve(props: TextProps, context: RenderContext): string; render(props: TextProps, resolvedValue: string | undefined, context: RenderContext): PuptNode; } //# sourceMappingURL=Text.d.ts.map