File size: 527 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { SvelteComponent } from "svelte";
import type { InputProps } from "../types.js";
declare const __propDef: {
props: InputProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type CheckboxInputProps = typeof __propDef.props;
export type CheckboxInputEvents = typeof __propDef.events;
export type CheckboxInputSlots = typeof __propDef.slots;
export default class CheckboxInput extends SvelteComponent<CheckboxInputProps, CheckboxInputEvents, CheckboxInputSlots> {
}
export {};
|