import { SecretType } from '../SecretType';
export declare class WalletBalance {
    secretType?: SecretType;
    balance: number;
    symbol: string;
    gasBalance: number;
    gasSymbol: string;
    rawBalance: string;
    rawGasBalance: string;
    decimals: number;
}
