import type { GitignoreIssue } from '../../config/types.js'; /** * Options for printing gitignore warnings to the user. */ interface GitignoreWarningOptions { /** The name of the environment file */ envFile: string; /** The reason for the gitignore warning */ reason: GitignoreIssue; /** Whether strict mode is enabled */ strict?: boolean; /** Optional custom log function (defaults to console.log) */ log?: (msg: string) => void; } /** * Logs a warning about .env not being ignored by Git. * @param options - Options for the gitignore warning. * @returns void */ export declare function printGitignoreWarning(options: GitignoreWarningOptions): void; export {}; //# sourceMappingURL=printGitignore.d.ts.map