import type { Plugin, Shape } from '@servicenow/sdk-build-core'; import type { Project } from '../project'; export declare class Inspector { private readonly project; constructor(project: Project); inspect(shape: Shape, ...plugins: Plugin[]): void; }