import * as React from 'react'; import { Comment as IComment } from '../dtos'; export interface FooterProps { conversationId: string; getTributeComponent: any; goToComment?: (id: string) => void; user: { id: string; }; addComment: (comment: IComment, callback?: () => void) => void; tributes?: Array; } export declare const Footer: React.FC;