import React from "react"; interface Props { direction: "vertical" | "horizontal"; spacing?: number | "fill"; children: (className: string) => React.ReactElement; alignment: "start" | "center" | "end"; mainAxisSizing: "fill" | "hug"; crossAxisSpacing: "fill" | "hug"; } export declare function NodeWithChildren(props: Props): React.ReactElement>; export {};