import { Command, Options } from 'clime';
import { File } from 'clime/bld/castable';
export declare class CommandOptions extends Options {
    noColor?: boolean;
    maxWidth?: number;
}
export default class extends Command {
    execute(profileFile: File, options: CommandOptions): Promise<void>;
}
