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