declare function capitalizeFirst(s: string): string; declare function escapeRegExp(s: string): string; export declare const StringUtils: { capitalizeFirst: typeof capitalizeFirst; escapeRegExp: typeof escapeRegExp; }; export {};