import { SvelteComponentTyped } from "svelte"; import type { IconProps } from '../types.js'; declare const __propDef: { props: IconProps; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type SpacingVerticalProps = typeof __propDef.props; export type SpacingVerticalEvents = typeof __propDef.events; export type SpacingVerticalSlots = typeof __propDef.slots; export default class SpacingVertical extends SvelteComponentTyped { } export {};