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