import * as React from 'react'; export interface ConfigConsumerProps { getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string; } export interface CalendarConsumerProps { customOnChange: any; luna: boolean; ableDate: Date[]; } export declare const ConfigContext: React.Context; export declare const CalendarContext: React.Context; export declare const ConfigConsumer: React.Consumer; export declare const CalendarConsumer: React.Consumer;