import type * as React from 'react'; import { type SpacingSizeProp } from '../../lib/spacings/sizes'; import type { HTMLAttributesWithRootRef } from '../../types'; export declare const CUSTOM_CSS_TOKEN_FOR_USER_GAP = "--vkui_internal--spacing_size"; export interface SpacingProps extends HTMLAttributesWithRootRef { /** * Высота спэйсинга. * * Принимает значения дизайн-системы, числовые значения и css-переменные. */ size?: SpacingSizeProp | undefined; /** * @deprecated 7.0.0.Будет удалeно в **VKUI v9**. */ children?: React.ReactNode | undefined; } /** * @see https://vkui.io/components/spacing */ export declare const Spacing: ({ size, ...restProps }: SpacingProps) => React.ReactNode; //# sourceMappingURL=Spacing.d.ts.map