import { TranslateFuncType } from '../../../util/models';
export declare const prefix = "NexusCommentSearchBar";
export interface ICommentSearchBar {
    initialSearchTerm?: string;
    onSearch?: (keyword: string) => void;
    t: TranslateFuncType;
}
export declare const CommentSearchBar: React.FC<ICommentSearchBar>;
