import { Options, Term } from "./types";
export { Options, Term };
export declare function getTerm(query: string, options?: Options): Promise<Term>;
export declare function getTerm(query: string[], options?: Options): Promise<Term[]>;
/**
 * Get a random term with its description and the example from the urban dictionary
 * @param {boolean} formatMarkdown - Whether to format the term description and the example for markdown
 * @example await getRandom();
 */
export declare function getRandom(options?: Options): Promise<Term>;
