import { z } from 'zod'; import { Component, PuptNode, RenderContext } from '../../src/index.ts'; export declare const exampleOutputSchema: z.ZodObject<{}, z.core.$loose>; type ExampleOutputProps = z.infer & { children: PuptNode; }; export declare class ExampleOutput extends Component { static schema: z.ZodObject<{}, z.core.$loose>; render({ children }: ExampleOutputProps, _resolvedValue: undefined, _context: RenderContext): PuptNode; } export {}; //# sourceMappingURL=ExampleOutput.d.ts.map