export declare enum ContractType {
    FUNGIBLE_TOKEN = 0,
    NON_FUNGIBLE_TOKEN = 1,
    SEMI_FUNGIBLE_TOKEN = 2,
    NATIVE_ASSET = 3
}
