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