import type { UiSchemaDefinition } from "../form/index.js"; import "./extra-templates/multi-field.js"; declare module "../form/index.js" { interface UiSchemaContent { combinationFieldOptionSelector?: UiSchemaDefinition; } } import { ANY_OF_KEY, ONE_OF_KEY } from "../core/index.js"; import { type ComponentProps } from "../form/index.js"; type $$ComponentProps = ComponentProps["anyOfField" | "oneOfField"] & { combinationKey: typeof ONE_OF_KEY | typeof ANY_OF_KEY; }; declare const Combination: import("svelte").Component<$$ComponentProps, {}, "value">; type Combination = ReturnType; export default Combination;