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