import { DisableMode } from '../common/common'; import { MonthSelectorFieldProps } from '../monthSelectorField/MonthSelectorField'; /** * Component & its Props */ export interface Props { label: { label: string | React.ReactNode; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; style?: React.CSSProperties; width?: number; }; monthSelectorField: MonthSelectorFieldProps; isContainerClickable?: boolean; isDisabled?: DisableMode; labelStyle?: React.CSSProperties; style?: React.CSSProperties; } export declare function LabeledMonthSelectorField({ label, monthSelectorField, isDisabled, labelStyle, isContainerClickable, style, }: Readonly): import("react/jsx-runtime").JSX.Element;