/** * Concatenates one or more url segments into a full path. Ensures only one / between each segment. * Ignores undefined, null, empty strings, whitespace only and whitespace including / segments. * @param segments The segments to concatenate together. */ export declare const concatUrls: (segments: string[]) => string; export default concatUrls;