import type { InspectorState, InspectorOptions } from '@pikku/inspector'; interface Meta { file: string; variable: string; type: string; typePath: string; } export type FilesAndMethods = { userSessionType: Meta; wireServicesType: Meta; singletonServicesType: Meta; pikkuConfigFactory: Meta; singletonServicesFactory: Meta; wireServicesFactory: Meta; }; /** * @deprecated Use state.filesAndMethods from InspectorState instead */ export declare const getPikkuFilesAndMethods: (state: InspectorState, options?: InspectorOptions["types"]) => Promise; export {};