import { type SwitchRootProps } from "radix-vue";
import type { HTMLAttributes } from "vue";
export interface SwitchProps {
    thumbClass?: string;
    variant?: "icon" | "default";
    class?: HTMLAttributes["class"];
}
declare const _default: import("vue").DefineComponent<SwitchProps & SwitchRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    "update:checked": (payload: boolean) => any;
}, string, import("vue").PublicProps, Readonly<SwitchProps & SwitchRootProps> & Readonly<{
    "onUpdate:checked"?: ((payload: boolean) => any) | undefined;
}>, {
    class: HTMLAttributes["class"];
    variant: "icon" | "default";
    thumbClass: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;
