import { SvelteComponentTyped } from "svelte"; declare type Validity = 'success' | 'error' | false; export type { Validity }; declare const __propDef: { props: { [x: string]: any; value?: boolean | undefined; indeterminate?: boolean | undefined; inline?: boolean | undefined; validity?: Validity | undefined; }; events: { [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 { }