import { AxisType } from './Axis';
import { DirectionType } from './Direction';
import { Vector1DType } from './Vector1d';
export type TranslateType = {
    clear: () => void;
    to: (vector: Vector1DType) => void;
    toggleActive: (active: boolean) => void;
};
export declare function Translate(axis: AxisType, direction: DirectionType, container: HTMLElement): TranslateType;
