/** Returns true if a file exists. */
declare const exists: (path: string) => Promise<boolean>;
export default exists;
