import type { StyleProp, ViewStyle } from 'react-native'; export type SliderProps = { /** The uniform key this slider drives (a scalar). */ readonly uniform: string; readonly min: number; readonly max: number; readonly step?: number; /** Display name; defaults to the uniform key. */ readonly label?: string; /** NativeWind class for the container; resolved via the `./nativewind` interop. */ readonly className?: string; readonly style?: StyleProp; }; export declare function Slider({ uniform, min, max, step, label, style }: SliderProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=slider.d.ts.map