import { Config } from "../factories/createConfig.js"; import { GetAccountReturnType } from "./getAccount.js"; //#region src/actions/watchAccount.d.ts type WatchAccountParameters = { onChange(account: GetAccountReturnType, prevAccount: GetAccountReturnType): void; }; type WatchAccountReturnType = () => void; declare function watchAccount(config: C, parameters: WatchAccountParameters): WatchAccountReturnType; //#endregion export { WatchAccountParameters, WatchAccountReturnType, watchAccount }; //# sourceMappingURL=watchAccount.d.ts.map