import { Profile } from '../common'; export declare class SearchController { search(model: string, keywords: string, page?: number, size?: number, profile?: Profile, fields?: string | string[], onFields?: string | string[], whereStr?: string, sortStr?: string, relationsStr?: string): Promise<{ query: object; items: any[]; total: number; page: number; size: number; }>; }