import { SvelteComponent } from "svelte"; declare const __propDef: { props: { checked?: boolean | undefined; }; events: { change: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type InputCheckboxProps = typeof __propDef.props; export type InputCheckboxEvents = typeof __propDef.events; export type InputCheckboxSlots = typeof __propDef.slots; export default class InputCheckbox extends SvelteComponent { } export {};