/** * @file RcTimeProvider */ import { ReactNode } from 'react'; import { Time } from '@co-hooks/date'; export interface ITimeProps { root: Time; children?: ReactNode; } export declare function RcTimeProvider(props: ITimeProps): JSX.Element;