import type { ProjectVariablesImplementation } from '../../../domain.objects'; import type { FileCheckContext } from '../../../domain.objects/FileCheckContext'; /** * createGetVariables creates a function which you can use to access project variables in your check functions */ export declare const createGetVariables: (example: T) => ((context: FileCheckContext) => T);