/** * #### Spacing * * Use these tokens for adding margin between elements or padding within containers. * * Just because a spacing token is equal to a pixel value you may need, it does not mean it's appropriate to * use the spacing variables. * * @category dimension * @previewType spacing * @cssProperties padding, margin, gap, width, height * @figmaVariableScopes WIDTH_HEIGHT, GAP */ declare const spacing: { spacingXSmall: string; spacingSmall: string; spacingMedium: string; spacingLarge: string; spacingXLarge: string; spacingXXLarge: string; spacingXXXLarge: string; }; /** * #### Measures * * @category dimension * @previewType spacing */ declare const measures: { /** * @cssProperties border-radius * @figmaVariableScopes CORNER_RADIUS */ borderRadius: string; /** * @cssProperties border-width * @figmaVariableScopes STROKE_FLOAT */ inputBorderWidth: string; /** * @cssProperties height, min-height, width, min-width * @figmaVariableScopes WIDTH_HEIGHT */ inputHeight: string; }; declare const spacingSizing: { /** * @cssProperties border-radius * @figmaVariableScopes CORNER_RADIUS */ borderRadius: string; /** * @cssProperties border-width * @figmaVariableScopes STROKE_FLOAT */ inputBorderWidth: string; /** * @cssProperties height, min-height, width, min-width * @figmaVariableScopes WIDTH_HEIGHT */ inputHeight: string; spacingXSmall: string; spacingSmall: string; spacingMedium: string; spacingLarge: string; spacingXLarge: string; spacingXXLarge: string; spacingXXXLarge: string; }; type Spacing = typeof spacing; type Measures = typeof measures; type SpacingSizing = typeof spacingSizing; export type { Spacing, Measures, SpacingSizing }; export default spacingSizing;