UNPKG

@sorens/artist-svelte

Version:

an opinionated and clean UI framework for SvelteKit with theme support built-in

35 lines (34 loc) 1.03 kB
import { SvelteComponentTyped } from "svelte"; import type { useAction } from '../../types/global'; import type { ColorProp } from '../../types/components'; declare const __propDef: { props: { [x: string]: any; color?: ColorProp; shadow?: boolean; id?: string; useAction?: useAction<HTMLElement>; class?: string | undefined; }; events: { change: Event; click: MouseEvent; dblclick: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; focus: FocusEvent; input: Event; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; 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<CheckboxProps, CheckboxEvents, CheckboxSlots> { } export {};