import { type BasePickerProps } from './BasePicker.types'; /** * The BasePicker component. * This component uses the composition component of the TextBox component. Please refer to the TextBox documentation for their usage. * This component extends the props of TextBox component. */ export declare function BasePicker({ targetDOMNode, enableAutoUnmount, open, onOpenStateChanged, disableAutoOpen, format, baseFormat, customFormatValue, value, defaultValue, initialViewingDate, onChange, calendarIconButtonProps, renderPopoverContent, onBlur, allowedPlacements, enableViewportConstraint, calendarLocale, disabled, ...textBoxProps }: BasePickerProps): import("react/jsx-runtime").JSX.Element;