import React from 'react';
import { TextInput } from 'react-native';
import { Size, Color } from './index';
export interface ShowValueProps {
    size: Size;
    textInput: React.MutableRefObject<TextInput | undefined>;
    color: Color;
    value: string;
    disabled: boolean;
    width?: number;
    onChange: (val: number | 'min') => unknown;
}
declare function ShowValue(props: ShowValueProps): React.JSX.Element;
export default ShowValue;
