import * as wn from 'webnative'; declare type ServerVars = { url: string; did: string; networkPrefix: string; maxFil: number; expiry: number; }; export declare const webnative: (impl: typeof wn) => void; export declare const getWebnative: () => typeof wn; export declare const server: (update: Partial) => void; export declare const getServerUrl: () => string; export declare const getServerDid: () => string; export declare const getNetworkPrefix: () => string; export declare const getMaxFil: () => number; export declare const getExpiry: () => number; export {};