import type { Balance } from '@bifrost-finance/types/interfaces/runtime';
import type { Struct } from '@polkadot/types-codec';
/** @name OrmlAccountData */
export interface OrmlAccountData extends Struct {
    readonly free: Balance;
    readonly reserved: Balance;
    readonly frozen: Balance;
}
export declare type PHANTOM_TOKENS = 'tokens';
