import { type JsonSchema } from "../../core/index.js"; /** * Deterministic preview props for one component, or null when its declared * schema cannot be represented (recursive, opaque, or the permissive * placeholder). `name` seeds every value, so two components never share filler. */ export declare function generateSampleProps(name: string, schema: JsonSchema | undefined): Record | null;