import { StepHistoryDataType } from '../types/StepHistoryDataType.js';
import { StepLabelType } from '../types/StepLabelType.js';
import '@drincs/pixi-vn/dist/override';

/**
 * Convert StepLabel to StepHistoryData
 * @param step
 * @returns
 */
declare function getStepSha1(step: StepLabelType): StepHistoryDataType;
/**
 * Check if two steps are equal
 * @param step1
 * @param step2
 * @returns
 */
declare function checkIfStepsIsEqual(step1: StepHistoryDataType | StepLabelType<any>, step2: StepHistoryDataType | StepLabelType<any>): boolean;

export { checkIfStepsIsEqual, getStepSha1 };
