export declare const toTitleCase: (str: string) => string;
export declare const removeRepeatedSpaces: (from: string) => string;
export declare const replaceCaseInsensitive: (input: string | undefined, replacer: string | undefined, last?: boolean, replaceWith?: string | undefined) => string | undefined;
