/// import _rtrim from 'validator/lib/rtrim'; import { IStringProps, TStringValidatorResult } from '../_types'; declare type TParameters = Parameters; export interface IRtrimProps { /** * Characters to be used for the trim. * @default whitespace */ chars?: TParameters[1]; } /** * Trim characters from the right-side of the input. */ export declare const rtrim: (props?: IRtrimProps & Omit) => TStringValidatorResult; export {};