import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { values: string[]; name: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; 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 {};