/** * @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 { StyleProp, TextStyle, ViewProps } from 'react-native'; export interface CalendarDateContentProps extends ViewProps { textStyle?: StyleProp; children: React.ReactText; } export type CalendarDateContentElement = React.ReactElement; export declare class CalendarDateContent extends React.Component { render(): React.ReactElement; }