import { BaseActions } from '../../base/actions'; export interface SearchActionsType { SEARCH_KEYWORD: { keyword: string; }; } export declare class SearchActions extends BaseActions { search(keyword: string): void; }