import { ReactElement } from 'react'; import { SingleSelectNumericFieldProps } from '../singleSelectNumericField/SingleSelectNumericField'; /** * Component & its Props */ export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; labelIcon?: ReactElement; style?: React.CSSProperties; width?: number; }; singleSelectNumericField: SingleSelectNumericFieldProps; style?: React.CSSProperties; } export declare function LabeledSingleSelectNumericField({ label, singleSelectNumericField, style, }: Readonly): import("react/jsx-runtime").JSX.Element;