import { Token, TokenFactory, ComparableToken, TokenValidationError, SemanticEncoding } from '../token';
import BigNumber from 'bignumber.js';
import { BaseTokenSchema } from '../../schema/types';
/**
 *  @category Error
 *  @description Error that indicates a failure happening when parsing encoding/executing Mumav
 */
export declare class MumavValidationError extends TokenValidationError {
    value: any;
    token: MumavToken;
    name: string;
    constructor(value: any, token: MumavToken, message: string);
}
export declare class MumavToken extends ComparableToken {
    protected val: {
        prim: string;
        args: any[];
        annots: any[];
    };
    protected idx: number;
    protected fac: TokenFactory;
    static prim: 'mumav';
    constructor(val: {
        prim: string;
        args: any[];
        annots: any[];
    }, idx: number, fac: TokenFactory);
    Execute(val: any): BigNumber;
    /**
     * @deprecated ExtractSchema has been deprecated in favor of generateSchema
     *
     */
    ExtractSchema(): "mumav";
    generateSchema(): BaseTokenSchema;
    /**
     * @throws {@link MumavValidationError}
     */
    private validate;
    /**
     * @throws {@link MumavValidationError}
     */
    Encode(args: any[]): any;
    /**
     * @throws {@link MumavValidationError}
     */
    EncodeObject(val: any, semantic?: SemanticEncoding): any;
    ToBigMapKey(val: string | number): {
        key: {
            int: string;
        };
        type: {
            prim: "mumav";
        };
    };
    ToKey({ int }: any): any;
    compare(mumav1: string | number, mumav2: string | number): 0 | 1 | -1;
    findAndReturnTokens(tokenToFind: string, tokens: Token[]): Token[];
}
