export declare const StringUtils: { errorToString: (error: any) => string; getRandomString: (length: number) => string; isBlank: (str: string | undefined | null) => boolean; isEmpty: (str: string | undefined | null) => boolean; sanitizeString: (str: string | undefined | null) => string | null; };