import { AxisMeasure, OrientationToAxis, Orientation } from '../../types'; export declare const orientationToAxis: OrientationToAxis; export declare const axisMeasure: AxisMeasure; export declare const orientationToMeasure: (orientation: Orientation) => string[]; export declare const axisClientMeasure: { x: string; y: string; }; export declare const isClamped: (value: number, min: number, max: number) => boolean; export declare const isFunction: (fn: any) => boolean;