import type { WalkOptions, WalkEntry } from "./types.js";
/**
 * @example
 * import { walkSync, FILE } from "@nodesecure/fs-walk";
 *
 * for (const [type, location] of walkSync(__dirname) {
 *  if (type === FILE) {
 *    console.log(location);
 *  }
 * }
 */
export declare function walkSync(directory: string, options?: WalkOptions): IterableIterator<WalkEntry>;
