import { BaseService } from '@opoint/core'; import { type StoredSearchFeedProps, type StoredSearchAddProps, type StoredSearchRetrieveProps, type StoredSearchUpdateProps, type StoredSearchDeleteProps, type OpointResponse } from '@opoint/types'; export declare class StoredSearch extends BaseService { endpoint: string; constructor({ api_key }: { api_key: string; }); feed(params?: StoredSearchFeedProps): Promise; /** * List all stored searches */ list(): Promise; add(params: StoredSearchAddProps): Promise; retrieve({ id }: StoredSearchRetrieveProps): Promise; update(params: StoredSearchUpdateProps): Promise; delete({ id }: StoredSearchDeleteProps): Promise; }