import { Step } from '../types'; export declare const didPageChange: (step: Step, previous?: Step) => boolean; export declare const buildPageLine: (step: Step) => string; export declare const buildSelector: (step: Step) => string; export declare const buildValue: ({ action, value }: Step) => string; export declare const buildExpressionLine: (step: Step) => string; export declare const buildStepLines: (step: Step) => string[];