import { FC } from "react"; import { Role } from "../types/messages"; import { Colors } from "../types/parametrization"; type CreationTimeProps = { dateStr: string | undefined; role?: Role; colors?: Colors; admin?: boolean; }; export declare const CreationTime: FC; export {};