/**
 * Creates a sanitized string from a given value, replacing the specified delimiter with whitespace.
 * @param value The value to be converted
 * @param delimiter The delimiter to use
 * @returns The value with the delimiter replaced by whitespace
 */
export declare const delimiterToWhiteSpace: (value: string, delimiter: string) => string;
