interface JoinProps {
children: React.ReactNode;
separator: React.ReactElement;
/** Flatten out nested fragments. Useful for Joins with conditional rendering */
flatten?: boolean;
}
/**
* `Join` is a higher order component that renders a separator component
* between each of `Join`'s direct children.
*
* @example
*
* }>
*
*
*
*
*
* which renders
*
*
*
*
*
*
*/
export declare const Join: ({ separator, children, flatten }: JoinProps) => any;
export {};