import React, { ElementType } from 'react'; import { BoxProps } from '@mui/material'; import { ResponsiveStyleValue } from '@mui/system'; export interface SpacingProps extends BoxProps { /** * Value of spacing. Transpiles to theme.spacing(value). * * @default 2 that transpiles by default to 16px */ value?: ResponsiveStyleValue; /** * Defines whether the Spacing should be horizontal or vertical. * @default: false */ horizontal?: boolean; } export declare const Spacing: React.FC;