import React from 'react';
export interface BoxProps extends React.ComponentPropsWithoutRef<'div'> {
    p?: string;
    m?: string;
    bg?: string;
    color?: string;
}
export declare const Box: React.ForwardRefExoticComponent<BoxProps & import("@music163/tango-boot").TangoComponentProps & React.RefAttributes<unknown>>;
