/** * @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'; import { CalendarPickerCellElement } from './calendarPickerCell.component'; import { CalendarDateInfo } from '../../type'; type ViewPropsWithoutChildren = Omit; export interface CalendarPickerRowProps extends ViewPropsWithoutChildren { data: CalendarDateInfo[]; children: (item: CalendarDateInfo, index: number) => CalendarPickerCellElement; } export type CalendarPickerRowElement = React.ReactElement>; export declare class CalendarPickerRow extends React.Component> { render(): React.ReactElement; } export {};