import { Test } from 'mocha'; /** Project code → test case IDs for multi-project (testops_multi) mode. */ export type ProjectMapping = Record; export declare const qase: { (caseId: number | string | number[] | string[], test: Test): Test; projects(mapping: ProjectMapping, nameOrTest: string | Test): string | Test; title(value: string): Cypress.Chainable>; fields(values: Record): Cypress.Chainable>; ignore(): Cypress.Chainable>; parameters(values: Record): Cypress.Chainable>; groupParameters(values: Record): Cypress.Chainable>; suite(value: string): Cypress.Chainable>; comment(value: string): Cypress.Chainable>; step(name: string, body: () => T | PromiseLike): Cypress.Chainable>; attach(attach: { name?: string; paths?: string | string[]; content?: Buffer | string; contentType?: string; }): Cypress.Chainable>; };