import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const referencesSchema: z.ZodObject<{ extend: z.ZodOptional; sources: z.ZodOptional; description: z.ZodOptional; }, z.core.$strip>>>; style: z.ZodOptional>; delimiter: z.ZodOptional>; }, z.core.$loose>; type ReferencesProps = z.infer & { children?: PuptNode; }; /** * Container component for reference materials and sources. * Can include Reference children and/or a sources array. * * Usage: * * * */ export declare class References extends Component { static schema: z.ZodObject<{ extend: z.ZodOptional; sources: z.ZodOptional; description: z.ZodOptional; }, z.core.$strip>>>; style: z.ZodOptional>; delimiter: z.ZodOptional>; }, z.core.$loose>; render(props: ReferencesProps, _resolvedValue: undefined, _context: RenderContext): PuptNode; } export {}; //# sourceMappingURL=References.d.ts.map