export declare function useResourceDiscovery(uri: string, linksAttr?: string): {
    response: Response | null;
    error: Error | null | undefined;
    isLoading: boolean;
    value: any;
};
