import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; color?: string | undefined; checked?: boolean | undefined; indeterminate?: boolean | undefined; disabled?: boolean | undefined; value?: string | number | null | undefined; group?: (string | number)[] | null | undefined; id?: string | null | undefined; style?: string | null | undefined; inputElement?: null | undefined; }; events: { change: Event; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type CheckboxProps = typeof __propDef.props; export declare type CheckboxEvents = typeof __propDef.events; export declare type CheckboxSlots = typeof __propDef.slots; export default class Checkbox extends SvelteComponentTyped { } export {};