import { FieldBaseProps } from '../base/fieldBase'; /** * Props for {@link WeekField}. * Extends {@link FieldBaseProps}. * * @category WeekField */ export type WeekFieldProps = Omit; /** * Week field component used to enter week and year values. * * Use for selecting calendar weeks in forms. * * @category WeekField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const WeekField: import('react').ForwardRefExoticComponent>;