DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
527 Bytes
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 {};