import type { CSSCustomProperties, LiteralUnion } from '../../types';
export type SpacingSize = '2xs' | 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl' | '4xl';
export declare const spacingSizeClassNames: Record<SpacingSize, string>;
export type SpacingSizeProp = LiteralUnion<SpacingSize | `--${string}`, number>;
export declare function resolveSpacingSize(cssVariable: string, size?: SpacingSizeProp): [string | undefined, CSSCustomProperties | undefined];
//# sourceMappingURL=sizes.d.ts.map