import React from 'react'; import { DatePickerType, DatePickerInputProps as MantineDatePickerInputProps } from '@mantine/dates'; export type SharedType = { isRange?: boolean; isMB?: boolean; fullWidth?: boolean; }; export type DatePickerProps = SharedType & MantineDatePickerInputProps; declare const DatePicker: ({ value, fullWidth, ...rest }: DatePickerProps) => React.JSX.Element; export { DatePicker };