import { Scenario } from './index.mjs'; import 'fixturify-project'; interface ListParams { files: string[]; require: string[] | undefined; matrix: string | undefined; } declare function list(params: ListParams): Promise; declare function printList(params: ListParams): Promise; export { type ListParams, list, printList };