import { CommandModule } from 'yargs';
interface DeployRaftOptions {
    file: string;
    dataServiceId?: string;
    dryRun?: boolean;
    debug?: boolean;
}
/**
 * Command module for deploying rafts
 */
export declare const deployRaftCommand: CommandModule<Record<string, never>, DeployRaftOptions>;
export {};
