import { PaymentMethodSingleSelectFieldProps } from '../../dropdowns/paymentMethodSingleSelect/PaymentMethodSingleSelectField'; import { DisableMode } from '../common/common'; export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; paymentSingleSelectField: PaymentMethodSingleSelectFieldProps; controlWidth?: number; errorInfoLabel?: string; fullWidthSelect?: boolean; hasError?: boolean; isDisabled?: DisableMode; style?: React.CSSProperties; } declare const LabeledPaymentMethodSingleSelectField: ({ style, isDisabled, label, paymentSingleSelectField, errorInfoLabel, hasError, controlWidth, fullWidthSelect, }: Props) => import("react/jsx-runtime").JSX.Element; export default LabeledPaymentMethodSingleSelectField;