import * as React from 'react'; import { View } from 'react-native'; import type { SliderRootState } from '../root/SliderRoot'; import type { ZestUIComponentProps } from '../../types'; /** * The interactive area of the slider: it measures itself, owns the drag gesture, * and turns a touch position into a value. * Renders a `` wrapped in a `GestureDetector`. * * Requires `react-native-gesture-handler`, and the app to be wrapped in * ``. */ export declare function SliderControl(componentProps: SliderControl.Props): React.JSX.Element; export interface SliderControlState extends SliderRootState { } export interface SliderControlProps extends ZestUIComponentProps { } export declare namespace SliderControl { type State = SliderControlState; type Props = SliderControlProps; } //# sourceMappingURL=SliderControl.d.ts.map