import { Text } from 'react-native'; import type { SliderRootState } from '../root/SliderRoot'; import type { ZestUIComponentProps } from '../../types'; /** * The formatted value of the slider. * Renders a ``. */ export declare function SliderValue(componentProps: SliderValue.Props): import("react").ReactElement>; export interface SliderValueState extends SliderRootState { } export interface SliderValueProps extends Omit, 'children'> { children?: React.ReactNode | ((formattedValues: string[], values: readonly number[]) => React.ReactNode); } export declare namespace SliderValue { type State = SliderValueState; type Props = SliderValueProps; } //# sourceMappingURL=SliderValue.d.ts.map