import { Helia } from '@helia/interface'; import { default as React } from 'react'; import { KuboGatewayOptions } from '../types.js'; interface HeliaContextProps { kuboGatewayOptions: KuboGatewayOptions; error: Error | null; helia: Helia | null; selectHeliaReady(): boolean; selectHeliaIdentity(): string; doInitHelia(): Promise; setKuboGatewayOptions(kuboGatewayOptions: Partial): void; } export declare const HeliaProvider: ({ children }: React.ComponentProps) => any; export declare const useHelia: () => HeliaContextProps; export {};