export type Spacing = 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl' | '0' | '2' | '4' | '6' | '8' | '12' | '16' | '24' | '32' | '40' | '48' | '56' | '64' | '80' | '96' | '128'; export declare const spacing: { [key in Spacing]: number; }; export default spacing;