import type { ComponentPropsWithRef } from 'react'; type BoxSurface = 'none' | 'default'; type BoxPadding = 'none' | 'default'; type BoxShadow = 'none' | 'default'; interface BoxProps extends ComponentPropsWithRef<'div'> { surface?: BoxSurface; padding?: BoxPadding; shadow?: BoxShadow; } declare function Box({ className, padding, shadow, surface, ...props }: BoxProps): import("react/jsx-runtime").JSX.Element; export type { BoxProps }; export default Box;