export interface PinnerState { knownNames: string[]; tips: Record; /** Maps ipnsName → appId for re-announcing. */ nameToAppId?: Record; /** Last activity timestamp per doc (ms epoch). */ lastSeenAt?: Record; } export declare function loadState(path: string): Promise; export declare function saveState(path: string, state: PinnerState): Promise; //# sourceMappingURL=state.d.ts.map