import { default as React, CSSProperties, JSX } from 'react'; type FlexBoxProps = { size?: number; pxSize?: string; padding?: number; type?: "flex" | "box"; direction?: "column" | "row"; style?: CSSProperties; className?: string; dataTestid?: string; children?: JSX.Element | JSX.Element[]; }; export declare const FlexBox: React.ForwardRefExoticComponent>; export {};