import React from 'react'; import { SPACES } from '../../tokens'; type SpaceValue = (typeof SPACES)[number]; interface BoxProps { as?: T; padding?: SpaceValue | [SpaceValue, SpaceValue]; horizontalPadding?: SpaceValue; verticalPadding?: SpaceValue; outline?: boolean; outlineHover?: boolean; } export declare const Box: (props: BoxProps & Omit, keyof BoxProps>) => React.JSX.Element; export {};