import { SpacingUnit } from "../../types"; export interface SpacerProps { x?: SpacingUnit; y?: SpacingUnit; } /** * Used to inject space where it's needed. */ export declare const Spacer: ({ x, y, ...props }: SpacerProps) => import("react/jsx-runtime").JSX.Element;