export interface PublisherWalletsConfig { wallets: Array<{ address: string; privateKey: string; }>; } export declare function publisherWalletsPath(dataDir: string): string; export declare function loadPublisherWallets(dataDir: string): Promise; export declare function addPublisherWallet(dataDir: string, privateKey: string): Promise; export declare function removePublisherWallet(dataDir: string, address: string): Promise; //# sourceMappingURL=publisher-wallets.d.ts.map