import '@berish/stateful/build/types'; import type { Peer } from '../peer'; import type { PeerLogger } from '../logger'; export declare type PeerStoreType = 'public' | 'private' | 'protected'; declare module '@berish/stateful/build/types' { interface IStatefulScope { storeName: string; storeType: PeerStoreType; logger: PeerLogger; peer: Peer; isConnected: boolean; connect: () => Promise; disconnect: () => void; sync: () => Promise; setStateRemote: (state: Partial) => Promise; setValueRemote: (props: (string | number | symbol)[], value: any) => Promise; reactionSetValueRemote: (callback: (props: (string | number | symbol)[], value: any) => void) => () => void; reactionSetStateRemote: (callback: (state: Partial) => void) => () => void; } interface IStatefulPrivateScope { remoteChanges: [(string | number | symbol)[], any][]; listenId: string; unreceiveSetValue: () => void; unreceiveSetState: () => void; } } //# sourceMappingURL=extension.d.ts.map