import { ReturnCode } from '../../types/command';
import { TargetCommand } from '../../types/command/targetCommand';
export declare class AddCommand extends TargetCommand {
    constructor(args: string[]);
    get insecure(): boolean;
    execute(): Promise<ReturnCode>;
    executeCred(): Promise<ReturnCode>;
    executeTarget(): Promise<ReturnCode>;
}
