import { SvelteComponentTyped } from "svelte"; import type { DESIGN_ORIENTATION_ARGUMENT } from "../../../types/orientations"; import type { DESIGN_SPACING_ARGUMENT } from "../../../types/spacings"; declare const __propDef: { props: { [x: string]: any; element?: HTMLSpanElement | HTMLDivElement | undefined; orientation?: DESIGN_ORIENTATION_ARGUMENT | undefined; variation?: "inline" | undefined; spacing?: DESIGN_SPACING_ARGUMENT | undefined; spacing_x?: DESIGN_SPACING_ARGUMENT | undefined; spacing_y?: DESIGN_SPACING_ARGUMENT | undefined; class?: string | undefined; id?: string | undefined; name?: string | undefined; style?: string | undefined; tabindex?: string | number | undefined; title?: string | undefined; hidden?: import("../../..").DESIGN_HIDDEN_ARGUMENT | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type SpacerProps = typeof __propDef.props; export declare type SpacerEvents = typeof __propDef.events; export declare type SpacerSlots = typeof __propDef.slots; export default class Spacer extends SvelteComponentTyped { } export {};