import { Test } from "@re-do/model"; import { BrowserName, Context } from "@re-do/run"; import { WithIds } from "persist-statelessly"; export declare type RedoArgs = { id: number; }; export declare type Config = { defaultBrowser?: BrowserName; customStepKinds?: Record, context: Context) => Promise>; }; export declare const defineConfig: (config: Config) => Config; export declare const run: ({ id }: RedoArgs) => Promise; export declare const getTests: () => WithIds[];