///
import { IVarBaseInputProps } from './VarBase';
export type IVarXYValue = [number, number];
export interface IVarXYProps extends IVarBaseInputProps {
/**
* Minimum value.
*/
min?: IVarXYValue;
/**
* Maximum value.
*/
max?: IVarXYValue;
/**
* Step.
*/
step?: IVarXYValue;
}
/**
* XY offset picker. Accepts and provides an array in form of [x, y].
*/
export declare const VarXY: ({ label, path, value, onChange, disabled, readOnly, className, defaultValue, min, max, step, error, errorPath, }: IVarXYProps) => JSX.Element;