import type { Linter } from "eslint";
export type { FlatGitignoreOptions } from "eslint-config-flat-gitignore";
export type Awaitable<T> = T | Promise<T>;
export type TypedFlatConfigItem = Omit<Linter.Config<Linter.RulesRecord>, "plugins"> & { plugins?: Record<string, any> };
export declare function isPnpm(cwd?: string): boolean;
export declare function isUnoCSS(cwd?: string): boolean;
