import React from 'react'; import type { JSX } from 'react'; import { LogicalProps } from '../utils/logical-properties'; import { TransitionToken } from '../theme/types'; import { MQ } from '../utils/style'; export interface BlockProps extends React.HTMLAttributes, LogicalProps { as?: keyof JSX.IntrinsicElements; stylePreset?: MQ; transitionPreset?: TransitionToken | TransitionToken[]; /** * @deprecated This property is deprecated and will be removed in the next major release. Use `marginInlineEnd` instead. */ spaceInline?: MQ; /** * @deprecated This property is deprecated and will be removed in the next major release. Use `marginBlockEnd` instead. */ spaceStack?: MQ; } export declare const Block: React.ForwardRefExoticComponent>; //# sourceMappingURL=block.d.ts.map