import type { Theme, ThemeProps } from "../defaultTheme";
import type { SpacingToken, Align, Justify } from "./types";
type Prop = "align" | "justify" | "spacing";
export declare const normalizeSpacing: (el: SpacingToken, theme: Theme) => string;
type PropObject = Record<Prop, Align | Justify | SpacingToken>;
export declare const normalize: (object: PropObject) => ({ theme }: ThemeProps) => string[] | null;
export {};
