import { AGICommandArgType } from '../Types/AGICommands'; export declare type VariableIdentifierMapping = { identifierType: 'variable'; name: string; number: number; type: AGICommandArgType; }; export declare type ConstantIdentifierMapping = { identifierType: 'constant'; name: string; value: string | number; }; export declare type IdentifierMapping = VariableIdentifierMapping | ConstantIdentifierMapping; export declare const BUILT_IN_IDENTIFIERS: Map; export declare function resolveIdentifierMapping(identifier: string, identifierMappings: Map): IdentifierMapping;