import { ReactNode } from "react"; /** * Properties for {@link Join} component. * @group Components */ export interface JoinProps { delimiter?: ReactNode; items: readonly T[]; operator?: string; punctuation?: string; render: (item: T, index: number) => ReactNode; } /** * Utility component for joining other components with separators. * @group Components */ export declare function Join({ delimiter, items, operator, punctuation, render, }: JoinProps): JSX.Element; //# sourceMappingURL=Join.d.ts.map