export interface IConfigProps {
    network?: 'mumbai' | 'polygon' | 'goerli' | 'mainnet';
    rpcUrl?: string;
    graphUrl?: string;
    ensGraphUrl?: string;
    ceramicUrl?: string;
    publicUrl?: string;
    litSdk?: any;
    biconomyKey?: string;
}
export declare const isProduction: boolean;
export declare const config: {
    state: {
        network: string;
        rpcUrl: string;
        graphUrl: string;
        ensGraphUrl: string;
        ceramicUrl: string;
        publicUrl: string;
        biconomyKey: string;
    };
    update(props: IConfigProps): any;
    get(): any;
};
//# sourceMappingURL=index.d.ts.map