import { type KindClientBuilder } from '../kind-client-builder.js';
import { type KindClient } from '../kind-client.js';
export declare class DefaultKindClientBuilder implements KindClientBuilder {
    /**
     * The path to the Kind executable.
     * @private
     */
    private _executable;
    constructor();
    /**
     * Set the Kind executable path.
     * @param executable The path to the Kind executable.
     * @returns This builder instance for method chaining.
     */
    executable(executable: string): DefaultKindClientBuilder;
    build(skipVersionCheck?: boolean): Promise<KindClient>;
}
