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