import { SvelteComponentTyped } from "svelte"; type Space = keyof typeof SPACING; interface SpacerProps { x?: Space; y?: Space; } declare const __propDef: { props: { x?: SpacerProps["x"]; y?: SpacerProps["y"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped { } export {};