import { SvelteComponent } from "svelte"; import type { INPUT_CONFIG } from "../types"; declare const __propDef: { props: { [x: string]: any; helperText?: string | undefined; id?: string | undefined; label: string; name: string; value?: string | number | undefined; animate?: INPUT_CONFIG["animate"]; labelClasses?: INPUT_CONFIG["labelClasses"]; rounded?: INPUT_CONFIG["rounded"]; size?: INPUT_CONFIG["size"]; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type CheckboxProps = typeof __propDef.props; export type CheckboxEvents = typeof __propDef.events; export type CheckboxSlots = typeof __propDef.slots; export default class Checkbox extends SvelteComponent { } export {};