import { ISlotsParserOption, ISlotVarDefinition } from './SlotsParser/models'; import type { TAbiInput } from '../types/TAbi'; export declare namespace SlotsParser { function slotsFromAbi(abiDef: string | TAbiInput[]): Promise; function slots(source: { path: string; code?: string; }, contractName?: string, opts?: ISlotsParserOption): Promise; }