declare const toHumanDate: (date: Date) => string; interface CommentProps { source?: string; url?: string; filename?: string; name?: string; date?: Date; footer?: string; values?: Array<[string, string]>; } declare const getComment: (props: CommentProps) => string; export { CommentProps, getComment as default, getComment, toHumanDate };