/** @typedef {typeof __propDef.props} FileDigitProps */ /** @typedef {typeof __propDef.events} FileDigitEvents */ /** @typedef {typeof __propDef.slots} FileDigitSlots */ export default class FileDigit extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type FileDigitProps = typeof __propDef.props; export type FileDigitEvents = typeof __propDef.events; export type FileDigitSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};