import { NonSanitizedArray } from './array';
/** Sanitizes the given array of `parts` (flattening and rejecting void values) and joins the resulting parts into a string */
export declare const safeBuildString: <T>(parts: NonSanitizedArray<T>) => string;
