import React from 'react';
import { TValue } from '@onesy/style';
import { IBaseElement } from '../types';
export declare type IBox = IBaseElement & {
    styles?: string | TValue;
};
declare const Box: React.FC<IBox>;
export default Box;
