import { Text } from 'react-native'; import type { SliderRootState } from '../root/SliderRoot'; import type { ZestUIComponentProps } from '../../types'; /** * An accessible label that is automatically associated with the slider thumbs. * Renders a ``. * * Upstream also focuses a thumb when the label is pressed. React Native has no * programmatic focus for a `View`, and the thumb is `accessibilityRole="adjustable"` * already, so the association is expressed purely through `accessibilityLabelledBy`. */ export declare function SliderLabel(componentProps: SliderLabel.Props): import("react").ReactElement>; export interface SliderLabelState extends SliderRootState { } export interface SliderLabelProps extends ZestUIComponentProps { } export declare namespace SliderLabel { type State = SliderLabelState; type Props = SliderLabelProps; } //# sourceMappingURL=SliderLabel.d.ts.map