//#region src/core/components/spacing.d.ts interface SpacingProps { /** * A scale factor that determines the amount of vertical space to be added. * * @remarks * The default value is 1, which corresponds to a standard spacing. A value of 2 would double the spacing, while a value of 0.5 would halve it. * * @defaultValue 1 */ scale?: number; } /** * A simple component that renders two horizontal breaks to create vertical spacing between elements. */ declare function Spacing({ scale }: SpacingProps): import("@alloy-js/core").Children; //#endregion export { SpacingProps as n, Spacing as t }; //# sourceMappingURL=spacing-HIHoQdxS.d.mts.map