import { IBaseCommandParams } from './IBaseCommandParams';
/**
 * @notice Parameters for executing a relay operation in governance
 * @dev Extends base command parameters with relay specific parameters
 */
export interface IRelayCommandParams extends IBaseCommandParams {
    target: string;
    value: bigint;
    data: string;
}
