import type { ScopeId, DeclarationId } from '@/types';
export type DryRunContextObject = {
    scopeId: ScopeId;
    targetId: DeclarationId;
};
export declare const createDryRunContextObject: (scopeId: ScopeId, targetId: DeclarationId) => DryRunContextObject;
