export type TCorePositionConfig = { min: number; max: number; initial: number; }; export declare const POSITION_MIN = -2147483647; export declare const POSITION_MAX = 2147483647; export declare const POSITION_INITIAL = 0; export declare const DEFAULT_POSITION_CONFIG: TCorePositionConfig; /** Returns the integer midpoint between two numbers, truncating toward zero. */ export declare function midpoint(a: number, b: number): number; //# sourceMappingURL=position.d.ts.map