import { Options } from '../types/Options';
/**
 * Finds the package file and data.
 *
 * Searches as follows:
 * --packageData flag
 * --packageFile flag
 * --stdin
 * --findUp
 */
declare function findPackage(options: Options): Promise<{
    pkgData: string | null;
    pkgFile: string | null;
    pkgPath: string | null;
}>;
export default findPackage;
