import { Matcher } from './Base';
export declare class ContainerWithMatcher<T> extends Matcher {
    private readonly expectedItems;
    constructor(expectedItems: ReadonlyArray<T>);
    check(actualItems: unknown): boolean;
    toString(): string;
    static make(...items: any[]): any;
}
