import { TestingCore } from '../testing-core.abstract';
import { TestingDescribe } from '../testing-describe.class';
import { TestingExpectation } from '../testing-expectation.class';
import { TestingIt } from '../testing-it.class';
import { TestingItToHaveBeenCalled } from './testing-it-to-have-been-called.class';
import { CounterConfig } from '../../type/counter-config.type';
import { ExecutableTests } from '../../interface/executable-tests.interface';
export declare class TestingItToHaveBeen<Descriptions extends string = string, Expectations extends string = string> extends TestingCore<Descriptions, Expectations> {
    #private;
    get called(): TestingItToHaveBeenCalled<string, string>;
    constructor(allowDescribe: boolean, allowIt: boolean, executable?: ExecutableTests, counter?: CounterConfig, testingDescribe?: TestingDescribe, testingIt?: TestingIt, testingExpectation?: TestingExpectation);
}
