declare module 'create-envexample' {
    /**
     * Creates a .env.example file from an existing .env file
     * by removing sensitive values while keeping the structure
     * @throws {Error} If .env file cannot be read or .env.example cannot be written
     * @returns {Promise<void>}
     */
    export function createEnvExample(): Promise<void>;
}
