import { type PropsWithChildren } from 'react'; import type { FlowItemContainerProps } from './interface'; export declare const useFlowItemPositioner: () => { resize: (this: unknown) => void; top: number; scrollTop: number; width: number; height: number; }; export declare function FlowItemContainer({ children, ...props }: PropsWithChildren): import("react").ReactElement>; export declare function FlowItem(props: PropsWithChildren): import("react").ReactNode;