import { InputModel, QBasePath } from "../base/QBasePath"; export declare class QNumberPath extends QBasePath { protected formatValue(value: number): string; private createNewFunctionPath; private createNewOperationPath; plus(value: InputModel): QNumberPath; add: (value: InputModel) => QNumberPath; minus(value: InputModel): QNumberPath; sub: (value: InputModel) => QNumberPath; multiply(value: InputModel): QNumberPath; mul: (value: InputModel) => QNumberPath; divide(value: InputModel): QNumberPath; div: (value: InputModel) => QNumberPath; divideWithFraction(value: InputModel): QNumberPath; divBy: (value: InputModel) => QNumberPath; modulo(value: InputModel): QNumberPath; mod: (value: InputModel) => QNumberPath; ceiling(): QNumberPath; floor(): QNumberPath; round(): QNumberPath; }