import { SearchResults, UltraLyricsFunctionReturnType } from '../Types';
/**
 * Search for lyrics
 * @param term The query to search for
 * @returns A Promise that resolves to an object containing the search results
 */
export declare const search: (term: string | number) => Promise<UltraLyricsFunctionReturnType<SearchResults>>;
