UNPKG

platina-core

Version:

UI Kit of SberMarketing

28 lines (27 loc) 771 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; label?: string | undefined; description?: string | undefined; name?: string | undefined; id?: string | undefined; checked: boolean; disabled?: boolean | undefined; }; events: { change: Event; input: Event; } & { [evt: string]: CustomEvent<any>; }; 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 SvelteComponentTyped<CheckboxProps, CheckboxEvents, CheckboxSlots> { } export {};