import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        id?: string;
        value?: any;
        checked?: boolean;
        indeterminate?: boolean;
        disabled?: boolean;
        circle?: boolean;
        size?: 'xs' | 'sm' | 'md' | 'lg';
        classes?: {
            root?: string;
            checkbox?: string;
            label?: string;
            icon?: string;
        };
    };
    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 {};
