Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import React from 'react';
import { RecentSearchListProps } from './typings';
export default class RecentSearchList extends React.Component<RecentSearchListProps> {
static defaultProps: {
list: readonly any[];
};
renderActions(): JSX.Element;
renderList(): JSX.Element[];
render(): JSX.Element;
}