import type { Component } from 'svelte'; import type { Switch, SwitchRootProps, WithoutChildrenOrChild } from 'bits-ui'; import '@sjsf/form/fields/extra-widgets/switch'; declare module '@sjsf/form' { interface UiOptions { shadcnSwitch?: WithoutChildrenOrChild; } } declare module '../context.js' { interface ThemeComponents { Switch: Component, {}, 'checked' | 'ref'>; } } declare const Switch: Component, {}, "value">; type Switch = ReturnType; export default Switch;