import { ComponentPropsWithoutRef } from 'react'; import { CalendarProps } from './DatepickerCalendar/type'; declare type DatepickerAttributes = ComponentPropsWithoutRef<'div'>; export interface DatepickerProps extends Omit, Pick { /** * To pass custom className to create custom styles */ scrollMode?: boolean; } export {};