export declare class Utils {
    /**
     * Joins a string array into a string. Useful for custom Type Mappers.
     *
     * @param input - The string array (or string) to join.
     * @param separator - A separator string to place between items.
     *
     * @returns The joined string.
     */
    static join(input: string | string[], separator: string): string;
}
