import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { Moment } from 'moment'; export interface TimeInterfaceProps extends PropsInterface { format?: string; time: Moment; } export declare class Time extends PureComponent { constructor(props: any); get time(): string; render(): JSX.Element; }