import React from 'react';
import type { DateProperties } from '../Entities';
interface OtherProps {
    date: string;
    onPress: (date: string) => void;
    isStartOfWeek?: boolean;
    isEndOfWeek?: boolean;
    isStartOfMonth?: boolean;
    isEndOfMonth?: boolean;
    isExtraDay?: boolean;
    showExtraDates?: boolean;
}
export declare type Props = DateProperties & OtherProps;
declare const _default: React.NamedExoticComponent<Props>;
export default _default;
