import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; import { Tracker } from '../../../services/TrackTileService'; export type ValueEditorProps = Pick & { /** @description this should be represented in the stored unit type. For Procedure resources that is always seconds */ stepAmount: number; value: number; onValueChange: (value: number) => void; observationUnit: string; style?: StyleProp; }; export declare const ValueEditor: (props: ValueEditorProps) => React.JSX.Element; declare const defaultStyles: (theme: import("../../../../BrandConfigProvider").Theme) => readonly ["AdvancedTrackerValueEditor", import("../../../../BrandConfigProvider/styles/createStyles").NamedStyles<{ button: { width: number; height: number; }; valueContainer: { alignItems: "center"; }; }>]; declare module './../../../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};