import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const askOptionSchema: z.ZodObject<{ value: z.ZodString; }, z.core.$loose>; export type OptionProps = z.infer & { children?: PuptNode; }; /** * Option component for use within Select/MultiSelect. * This is a marker component - it doesn't render directly. * The parent Select/MultiSelect component processes the options. */ export declare class AskOption extends Component { static schema: z.ZodObject<{ value: z.ZodString; }, z.core.$loose>; render(_props: OptionProps, _resolvedValue: undefined, _context: RenderContext): PuptNode; } //# sourceMappingURL=Option.d.ts.map