/**
 * Oxfmt tool resolver for the vite-plus CLI.
 *
 * This module exports a function that resolves the oxfmt binary path
 * using Node.js module resolution. The resolved path is passed back
 * to the Rust core, which then executes oxfmt for code formatting.
 *
 * Used for: `vite-plus fmt` command
 *
 * Oxfmt is a fast JavaScript/TypeScript formatter written in Rust that
 * provides high-performance code formatting capabilities.
 */
/**
 * Resolves the oxfmt binary path and environment variables.
 *
 * @returns Promise containing:
 *   - binPath: Absolute path to the oxfmt binary
 *   - envs: Environment variables to set when executing oxfmt
 *
 * The environment variables provide runtime context to oxfmt,
 * including Node.js version information and package manager details.
 */
export declare function fmt(): Promise<{
    binPath: string;
    envs: Record<string, string>;
}>;
