import * as React from 'react'; import * as GQL from '../../backend/graphqlschema'; interface SearchResultsInfoBarProps { /** The logged-in user or null */ user: GQL.IUser | null; /** The loaded search results and metadata */ results: GQL.ISearchResults; onShowMoreResultsClick: () => void; allExpanded: boolean; onExpandAllResultsToggle: () => void; onDidCreateSavedQuery: () => void; onSaveQueryClick: () => void; didSave: boolean; } /** * The info bar shown over the search results list that displays metadata * and a few actions like expand all and save query */ export declare const SearchResultsInfoBar: React.StatelessComponent; export {}; //# sourceMappingURL=SearchResultsInfoBar.d.ts.map