/**
 * Searches for a readme file in the following order:
 * 1. Searches the current working directly for readme.md
 * 2. If there's no readme.md in the current directory, search up to the closest package directory
 * 3. Give up and return undefined if no readme is found
 * @returns The path to the readme file or undefined if not found
 */
export declare function findReadme(): Promise<string | undefined>;
/**
 * Searches up for a readme.md file
 * @see `findReadme()` for more details on the search process.
 * @returns The path to the readme file
 * @throws if no readme is found
 */
export declare function findReadmeThrows(): Promise<string>;
