import { Coords, Middleware, MiddlewareState } from '../types';
export declare const convertValueToCoords: (state: MiddlewareState, value: number) => Coords;
/**
 * Modifies the placement by translating the floating element along the
 * specified axes.
 * A number (shorthand for `mainAxis` or distance), or an axes configuration
 * object may be passed.
 */
export declare const offset: (value?: number) => Middleware;
