import type { AlphaSliderProps } from '../props/alpha-slider'; export declare const useAlphaSlider: (props: AlphaSliderProps) => { thumb: any; bar: any; alpha: any; alphaLabel: any; handleDrag: (event: MouseEvent | TouchEvent) => void; handleClick: (event: MouseEvent | TouchEvent) => void; handleKeydown: (event: KeyboardEvent) => void; }; export declare const useAlphaSliderDOM: (props: AlphaSliderProps, { bar, thumb, handleDrag, }: Pick, "bar" | "thumb" | "handleDrag">) => { rootKls: any; barKls: any; barStyle: any; thumbKls: any; thumbStyle: any; update: () => void; };