export declare function replaceAll(s: string, from: string, to: string): string; export declare function camel2snake(s: string): string; export declare function snake2camel(s: string): string; export declare function isNumberLike(s: any): boolean; export declare function ensureSuffix(_s: any, suffix: string): string | undefined; export declare function getIgnoreBlank(s: string | null | undefined, defaultValue?: string): string | undefined; export declare function sortNo(nos: string[], separater?: string): string[]; export declare function sortArrayOneByOne(xs1: number[], xs2: number[]): number;