import { SvelteComponentTyped } from "svelte";
import { type ThemeColors } from '@layerstack/tailwind';
declare const __propDef: {
    props: {
        [x: string]: any;
        id?: string | undefined;
        name?: string | undefined;
        value?: any;
        checked?: boolean | null | undefined;
        required?: boolean | undefined;
        disabled?: boolean | undefined;
        size?: "sm" | "md" | "lg" | undefined;
        color?: ThemeColors | undefined;
        classes?: {
            root?: string;
            input?: string;
            switch?: string;
            toggle?: string;
        } | undefined;
    };
    events: {
        change: Event;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            checked: boolean | null;
            value: any;
        };
    };
};
export type SwitchProps = typeof __propDef.props;
export type SwitchEvents = typeof __propDef.events;
export type SwitchSlots = typeof __propDef.slots;
export default class Switch extends SvelteComponentTyped<SwitchProps, SwitchEvents, SwitchSlots> {
}
export {};
