/**
 * Config commands - Clipanion implementation
 *
 * Configuration management commands for CLI settings and preferences
 */
import { Command } from "clipanion";
export declare class ConfigCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    execute(): Promise<number>;
}
export declare class ConfigInitCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    execute(): Promise<number>;
}
export declare class ConfigShowCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    execute(): Promise<number>;
}
export declare class ConfigResetCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    force: boolean;
    execute(): Promise<number>;
}
export declare class ConfigSetCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    key: string;
    value: string;
    execute(): Promise<number>;
}
export declare class ConfigGetCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    key: string;
    execute(): Promise<number>;
}
//# sourceMappingURL=config.d.ts.map