import { Provider } from '../../types'; import { GetAccountResult } from './getAccount'; export declare type WatchAccountCallback = (data: GetAccountResult) => void; export declare function watchAccount(callback: WatchAccountCallback): () => void;