import { default as React } from 'react'; import { DateInputProps } from './DateInput/DateInput'; import { DateInputContainerProps } from './DateInput/DateInputContainer'; /** @inheritdoc */ export interface DatePickerProps extends DateInputContainerProps, DateInputProps { ref?: React.Ref; label: string; } /** * A date picker input. * Includes translations. You can use `LocalizationProvider` to override language based on the user's locale. */ export declare const DatePicker: ({ label, error, loading, warning, width, ref, ...inputProps }: DatePickerProps) => React.JSX.Element;