/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import React from 'react'; import { ViewProps } from 'react-native'; type ViewPropsWithoutChildren = Omit; export interface CalendarMonthHeaderProps extends ViewPropsWithoutChildren { data: string[]; children: (data: string, index: number) => React.ReactElement; } export type CalendarMonthHeaderElement = React.ReactElement; export declare class CalendarMonthHeader extends React.Component { render(): React.ReactElement; } export {};