/** * This function is intened to be used in the application code to store any * information that you want to store and read in Cypress tests. * * If the call line is not enabled, it does nothing. Enable it * in Cypress tests in `beforeEach` hook. * * @param args Anything that you want to store */ export declare const lineCalled: (...args: unknown[]) => void; /** * This function is same as `lineCalled` but it clones the arguments * before storing them. * * @param args Anything that you want to store */ export declare const lineCalledWithClone: (...args: unknown[]) => void;