/**
 * @file index.tsx
 *
 * @fileoverview Joins a list of strings together.
 */
import { FunctionComponent } from 'react';
interface StringJoinerProps {
    items: string[];
    separator?: string;
}
export declare const StringJoiner: FunctionComponent<StringJoinerProps>;
export default StringJoiner;
