import { IBaseCommandParams } from './IBaseCommandParams';
import { VoteSupport } from '../../../enums/VoteSupport';
/**
 * @notice Parameters for executing a cast vote with reason and params operation on a governance proposal
 * @dev Extends base command parameters with cast vote with reason and params specific parameters
 */
export interface ICastVoteWithReasonAndParamsCommandParams extends IBaseCommandParams {
    proposalId: bigint;
    support: VoteSupport;
    reason: string;
    params: string;
}
