import { Float } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export declare function round(input: {
    val: ICharacter | string;
    dec: INumeric | number;
    mode?: INumeric | number;
}): Float;
