import { Thing } from '@pod-os/core'; import { Subject } from 'rxjs'; /** * Respond with the given resource to a pod-os:resource event * * This will only provide one resource, once. If you need to change the resource over time, * use mockResources() instead. * * @param resource The resource to receive in the requesting component */ export declare function mockResource(resource: Partial): void; /** * Provide resources to components that requested a resource * via pod-os:resource event. * @returns A subject that can be used to emit resources, that will be received by the requesting component. */ export declare function mockResources(): Subject>;