import React, { PropsWithChildren } from 'react'; import * as THREE from 'three'; import { ReactThreeFiber } from '@react-three/fiber'; import type { R3FlexProps, FlexYogaDirection, FlexPlane } from './props'; export declare type FlexProps = PropsWithChildren void; disableSizeRecalc?: boolean; /** Centers flex container in position. * * !NB center is based on provided flex size, not on the actual content */ centerAnchor?: boolean; }> & R3FlexProps & Omit, 'children'>>; /** * Flex container. Can contain Boxes */ export declare const Flex: React.ForwardRefExoticComponent & React.RefAttributes>;