import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Spacing` - The `Spacing` object is used to describe the different types of spacing. * * @public */ export declare const Spacing: { readonly None: "none"; readonly Top: "top"; readonly Right: "right"; readonly Bottom: "bottom"; readonly Left: "left"; readonly Vertical: "vertical"; readonly Horizontal: "horizontal"; readonly All: "all"; }; /** * @public */ export type Spacing = ValuesOf; //# sourceMappingURL=Spacing.d.ts.map