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: (parts: NonSanitizedArray) => string;