import { DisableMode } from '../common/common'; import { Props as DayOfMonthSelectorProps } from '../dayOfMonthSelector/DayOfMonthSelector'; /** * Component & its Props */ export interface Props { dayOfMonthField: DayOfMonthSelectorProps; label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; isDisabled?: DisableMode; style?: React.CSSProperties; } export declare function LabeledDayOfMonthSelectorField({ label, dayOfMonthField, isDisabled, style, }: Readonly): import("react/jsx-runtime").JSX.Element;