import React, { ReactNode, Ref, HTMLAttributes } from 'react';
import { FlexContainerProps, FlexChildProps, WidthProps, HeightProps, PaddingProps, MarginProps, DisplayProps, OverflowProps, PositionProps } from '../style/helpers';
interface BoxStyleProps extends FlexContainerProps, FlexChildProps, WidthProps, HeightProps, PaddingProps, MarginProps, DisplayProps, OverflowProps, PositionProps {
}
export interface BaseBoxProps extends HTMLAttributes, BoxStyleProps {
readonly element?: keyof JSX.IntrinsicElements;
readonly children?: ReactNode | ((props: {
className: string;
ref: Ref;
}) => ReactNode);
}
export declare const Box: React.ForwardRefExoticComponent>;
export {};
//# sourceMappingURL=box.d.ts.map