import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const reviewFileSchema: z.ZodObject<{ file: z.ZodString; editor: z.ZodOptional; }, z.core.$loose>; type ReviewFileProps = z.infer; export declare class ReviewFile extends Component { static schema: z.ZodObject<{ file: z.ZodString; editor: z.ZodOptional; }, z.core.$loose>; static hoistName: boolean; render({ file, editor }: ReviewFileProps, _resolvedValue: undefined, context: RenderContext): PuptNode; } export {}; //# sourceMappingURL=ReviewFile.d.ts.map