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