import type { TComponent } from '../config'; type Resource = { title: string; did: string; version: string; status?: number; path?: string; env?: Record; }; declare function getResources({ scope, components: allComponents, types, skipRunningCheck, ignorePublic, }?: { scope?: 'all' | 'pack' | 'excludePack'; components: TComponent[]; types?: { did: string; type: string; }[]; skipRunningCheck?: boolean; ignorePublic?: boolean; }): Resource[]; export { getResources }; export { Resource }; declare const _default: { getResources: typeof getResources; }; export default _default;