/** @typedef {typeof __propDef.props} GridSpacingStoryProps */ /** @typedef {typeof __propDef.events} GridSpacingStoryEvents */ /** @typedef {typeof __propDef.slots} GridSpacingStorySlots */ export default class GridSpacingStory extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type GridSpacingStoryProps = typeof __propDef.props; export type GridSpacingStoryEvents = typeof __propDef.events; export type GridSpacingStorySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};