import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; checked?: boolean | undefined; id?: string | undefined; color?: "default" | "success" | "warning" | "error" | "secondary" | null | undefined; disabled?: boolean | undefined; ring?: boolean | undefined; }; events: { click: CustomEvent; change: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type CheckboxProps = typeof __propDef.props; export type CheckboxEvents = typeof __propDef.events; export type CheckboxSlots = typeof __propDef.slots; /** * An input with a true / false state. * * [See Docs](https://geist-ui-svelte.dev/components/checkbox) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class Checkbox extends SvelteComponent { } export {};