import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const askLabelSchema: z.ZodObject<{ value: z.ZodUnion; }, z.core.$loose>; export type LabelProps = z.infer & { children?: PuptNode; }; /** * Label component for use inside Ask.Rating. * Maps a numeric value to a descriptive label. */ export declare class AskLabel extends Component { static schema: z.ZodObject<{ value: z.ZodUnion; }, z.core.$loose>; render(_props: LabelProps, _resolvedValue: undefined, _context: RenderContext): PuptNode; } //# sourceMappingURL=Label.d.ts.map