import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const chainOfThoughtSchema: z.ZodObject<{ style: z.ZodOptional>; showReasoning: z.ZodOptional; delimiter: z.ZodOptional>; }, z.core.$loose>; type ChainOfThoughtProps = z.infer & { children?: PuptNode; }; export declare class ChainOfThought extends Component { static schema: z.ZodObject<{ style: z.ZodOptional>; showReasoning: z.ZodOptional; delimiter: z.ZodOptional>; }, z.core.$loose>; render(props: ChainOfThoughtProps, _resolvedValue: undefined, _context: RenderContext): PuptNode; } export {}; //# sourceMappingURL=ChainOfThought.d.ts.map