import { App, GetContextParameters } from "edifice-ts-client"; import { ILinkedResource } from "edifice-ts-client"; /** * A hook to search for resources produced by applications. * * @param appCode Currently running application. * @returns An object with 2 fields : * * `resourceApplications: Array` * Resources-producing applications the user can use. * * `loadResources: (filters:GetContextParameters) => Promise` * A search method with filters. * */ export declare const useResourceSearch: (appCode: App) => { resourceApplications: Array; loadResources: (filters: GetContextParameters) => Promise; };