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