import { BreakpointConfig } from "../../breakpoints"; export type BoxSides = "all" | "top" | "right" | "bottom" | "left" | "horiz" | "vert"; export type SpaceSizes = "xxs" | "xs" | "s" | "m" | "l" | "xl" | "xxl" | "none"; export type SpaceSize = BreakpointConfig; /** * Can be used to set `spacingSize` and `gutterSize` properties. * The values align with the related spacing design tokens. */ export declare const spaceSizes: { xxs: string; xs: string; s: string; m: string; l: string; xl: string; xxl: string; none: number; }; /** * Allows for properties to apply spacing to the sides passed in. - `horiz` adds horizontal space on the left and right - `vert` adds vertical space on the top and bottom - `all` adds space on all sides * */ export declare const boxSpacing: (property: "margin" | "padding", side: BoxSides, spaceSize?: SpaceSize) => string | undefined;