import type { Discovery } from '../config/types.js'; /** * Arguments for the discoverEnvFiles function. */ interface DiscoverEnvFilesArgs { /** The current working directory to search for environment files */ cwd: string; /** The value of the --env flag if provided, otherwise null */ envFlag: string | null; /** The value of the --example flag if provided, otherwise null */ exampleFlag: string | null; } /** * Discovers environment files in the specified directory. * @param cwd - The current working directory. * @param envFlag - The --env flag value if provided. * @param exampleFlag - The --example flag value if provided. * @returns A Discovery object containing the found environment files and their metadata. */ export declare function discoverEnvFiles({ cwd, envFlag, exampleFlag, }: DiscoverEnvFilesArgs): Discovery; export {}; //# sourceMappingURL=envDiscovery.d.ts.map