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