import * as React from 'react'; import { ReactNode } from 'react'; interface IWeekPickerProps { value: [any, any]; title?: any; minDate?: Date; maxDate?: Date; onConfirm: (value: any) => void; columnsTop?: ReactNode; onDefaultChange?: (values: any) => void; onChange?: (values: any) => void; onCancel?: () => void; disabledToday?: boolean; } declare const _default: React.NamedExoticComponent; export default _default;