import { Component, PuptNode, RenderContext } from '../../src/index.ts'; import { z } from 'zod'; export declare const fallbackSchema: z.ZodObject<{ when: z.ZodString; then: z.ZodString; delimiter: z.ZodOptional>; }, z.core.$loose>; type FallbackProps = z.infer & { children?: PuptNode; }; /** * Describes a fallback behavior for a specific situation. * Typically used as a child of Fallbacks. * * Usage: * */ export declare class Fallback extends Component { static schema: z.ZodObject<{ when: z.ZodString; then: z.ZodString; delimiter: z.ZodOptional>; }, z.core.$loose>; render(props: FallbackProps, _resolvedValue: undefined, _context: RenderContext): PuptNode; } export {}; //# sourceMappingURL=Fallback.d.ts.map