import { BitAccount } from './BitAccount';
import { DotBit } from './DotBit';
export interface BitPluginBase {
    version?: string;
    name?: string;
    onInstall: (dotbit: DotBit) => void;
    onUninstall?: (dotbit: DotBit) => void;
    onInitAccount?: (bitAccount: BitAccount) => void;
}
