/** @typedef {typeof __propDef.props} FileMinus2Props */ /** @typedef {typeof __propDef.events} FileMinus2Events */ /** @typedef {typeof __propDef.slots} FileMinus2Slots */ export default class FileMinus2 extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type FileMinus2Props = typeof __propDef.props; export type FileMinus2Events = typeof __propDef.events; export type FileMinus2Slots = 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 {};