import type { CommonFunction } from "../utils/Util"; import type { Range } from "./Range"; export declare class StepRegistryEntry { private readonly _method; private readonly _filePath; private readonly _span; private readonly _stepText; private readonly _stepValue; private _instance; private readonly _hasAlias; constructor(stepText: string, stepValue: string, filePath: string, method?: CommonFunction, span?: Range, hasAlias?: boolean); getMethod(): CommonFunction | undefined; getInstance(): Record | undefined; setInstance(instance: Record): Record; getFilePath(): string; getRange(): Range | undefined; getStepText(): string; hasAlias(): boolean; }