import { FC } from 'react'; import { DeepPartial, IBoolean } from '../../../types/types'; export interface DatepickerViewsDaysTheme { header: { base: string; title: string; }; items: { base: string; item: { base: string; selected: IBoolean; disabled: string; }; }; } export interface DatepickerViewsDaysProps { theme?: DeepPartial; } export declare const DatepickerViewsDays: FC; //# sourceMappingURL=Days.d.ts.map