import { Float, Integer, Integer8 } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export declare function divide(left: INumeric | ICharacter | Integer8 | string | number, right: INumeric | ICharacter | Integer8 | string | number): Integer | Integer8 | Float;
