export interface RunOptions { pattern?: string[] | string; } declare const run: (opts?: RunOptions) => void; export default run; export * from "./result"; export * from "./job"; export type { Config } from "./config";