export interface OwnProps { label?: string; initialValue?: any; placeholder?: string; selectedDay: (day: Date) => void; icon?: any; withDisabledFutureDate?: boolean; disabledDays?: any[]; } export interface State { day: any; } export declare type Props = OwnProps;