import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        id?: string | undefined;
        name?: string | undefined;
        value?: any;
        checked?: boolean | undefined;
        group?: any[] | null | undefined;
        indeterminate?: boolean | undefined;
        required?: boolean | undefined;
        disabled?: boolean | undefined;
        fullWidth?: boolean | undefined;
        size?: "xs" | "sm" | "md" | "lg" | undefined;
        circle?: boolean | undefined;
        classes?: {
            root?: string;
            input?: string;
            checkbox?: string;
            label?: string;
            icon?: string;
        } | undefined;
    };
    events: {
        change: Event;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type CheckboxProps = typeof __propDef.props;
export type CheckboxEvents = typeof __propDef.events;
export type CheckboxSlots = typeof __propDef.slots;
export default class Checkbox extends SvelteComponentTyped<CheckboxProps, CheckboxEvents, CheckboxSlots> {
}
export {};
