import React from 'react'; import type { GroupBaseProps } from '../layout/Group'; import type { SpacerBaseProps } from '../layout/Spacer'; type FlattenAndJoinNodesParams = { Spacer: React.ComponentType>; ItemWrapper?: React.ComponentType>; } & GroupBaseProps; export declare function flattenAndJoinNodes({ children, direction, divider, gap, renderItem, ItemWrapper, Spacer, }: FlattenAndJoinNodesParams): ( | string | number | bigint | React.ReactElement> | Iterable | React.ReactPortal | Promise< | string | number | bigint | boolean | React.ReactPortal | React.ReactElement> | Iterable | null | undefined > )[]; export {}; //# sourceMappingURL=flattenAndJoinNodes.d.ts.map