UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

9 lines (8 loc) 254 B
import type { Locale } from 'date-fns'; interface GetCreatedAtProps { createdAt: number; locale?: Locale; stringSet: Record<string, string>; } export default function ({ createdAt, locale, stringSet, }: GetCreatedAtProps): string; export {};