import { TezosOperationType } from '../TezosOperationType';
import { TezosOperation } from './TezosOperation';
export interface TezosBallotOperation extends TezosOperation {
    kind: TezosOperationType.BALLOT;
    source: string;
    period: string;
    proposal: string;
    ballot: 'nay' | 'yay' | 'pass';
}
