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