export interface DateTimeAgoProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Date obj
     * @default null
     */
    date: Date;
    /**
     * Handles icon showing
     * @default true
     */
    showStartIcon?: boolean;
    /**
     * Any other properties
     */
    [p: string]: any;
}
export default function DateTimeAgo(props: DateTimeAgoProps): JSX.Element;
