import { default as React } from 'react'; export interface FlexRestricterProps { vertical?: boolean; children?: React.ReactNode; ref?: React.Ref; } /** * Useful when you have some flex layout and need to restrict something within to the limits of layout itself * * To allow scrollable strictly within flex layout, for example */ export declare function FlexRestricter(props: FlexRestricterProps): import("react/jsx-runtime").JSX.Element;