import { SvelteComponent } from "svelte"; import type { Events, Props } from "../types.js"; declare const __propDef: { props: Props; slots: { default: { builder: { readonly 'data-disabled': true | undefined; readonly disabled: true | undefined; readonly 'data-state': "checked" | "unchecked"; readonly type: "button"; readonly role: "switch"; readonly 'aria-checked': "false" | "true"; readonly 'aria-required': "true" | undefined; } & { [x: `data-melt-${string}`]: ""; } & { action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"keydown" | "click">; }; }; }; events: Events; }; export type SwitchProps = typeof __propDef.props; export type SwitchEvents = typeof __propDef.events; export type SwitchSlots = typeof __propDef.slots; export default class Switch extends SvelteComponent { } export {};