export namespace verticalStrategy { export { getCoordinates }; export { getRotatedCoordinates }; export { getBarCoordinates }; export { getThumbStyles }; export { getBarStyles }; export { getInputStyles }; } declare function getCoordinates(event: any, rect: any): { new: any; min: any; max: any; }; declare function getRotatedCoordinates(event: any, rect: any): { new: any; min: any; max: any; }; declare function getBarCoordinates(event: any, startCoordinates: any, rect: any): { new: number; min: any; max: any; }; declare function getThumbStyles(percent: any, isLastMoved: any): { left: string; top: string; zIndex: number; }; declare function getBarStyles(fromPercent: any, toPercent: any): { top: string; height: string; }; declare function getInputStyles(isActive: any): { border?: undefined; color?: undefined; backgroundColor?: undefined; textDecoration?: undefined; } | { border: string; color: string; backgroundColor: string; textDecoration: string; }; export {}; //# sourceMappingURL=vertical.d.ts.map