declare type TrimType = 'R' | 'L' | ''; export declare function strTrim(str: string, char: string, type?: TrimType): string; export {};