import type { GlobalDetails } from './types/AllGlobals';
/** Check whether or not a global has to be ignored for diff tracking */
export declare function shouldIgnoreGlobal(globalDetails: Pick<GlobalDetails, 'depth' | 'name' | 'rootAncestors'>, ignoredRootRegex: RegExp): boolean;
/** Check whether or not a property from a global has to be ignored for diff tracking */
export declare function shouldIgnoreProperty(globalDetails: Pick<GlobalDetails, 'depth' | 'name' | 'rootAncestors'>, propertyName: string, ignoredRootRegex: RegExp): boolean;
