import type { Variable } from 'eslint-scope'; import type { AllowList } from './types'; export type { AllowList } from './types'; export declare function isAllowListedVariable({ allowList, variable, }: { allowList: AllowList; variable: Variable; }): boolean; export declare const getAllowedFunctionCalls: (options: any[]) => AllowList; export declare const getAllowedDynamicKeys: (options: any[]) => AllowList;