import { View } from 'react-native'; import type { SliderRootState } from '../root/SliderRoot'; import type { ZestUIComponentProps } from '../../types'; /** * The visual rail the thumb travels along. * Renders a ``. * * The track is static — nothing about it changes while a thumb is dragged — so * it subscribes to no selector and does not re-render once per frame. Its * published state is the latest snapshot at its last render. */ export declare function SliderTrack(componentProps: SliderTrack.Props): import("react").ReactElement>; export interface SliderTrackState extends SliderRootState { } export interface SliderTrackProps extends ZestUIComponentProps { } export declare namespace SliderTrack { type State = SliderTrackState; type Props = SliderTrackProps; } //# sourceMappingURL=SliderTrack.d.ts.map