import type { RemoteComponentType, PropsForRemoteComponent } from '@remote-ui/core';
import { Node } from '@remote-ui/testing';
export declare function toContainComponent<Type extends RemoteComponentType<string, any, any>>(this: jest.MatcherUtils, node: Node<unknown>, type: Type, props?: Partial<PropsForRemoteComponent<Type>>): {
    pass: boolean;
    message: () => string;
};
export declare function toContainComponentTimes<Type extends RemoteComponentType<string, any, any>>(this: jest.MatcherUtils, node: Node<unknown>, type: Type, times: number, props?: Partial<PropsForRemoteComponent<Type>>): {
    pass: boolean;
    message: () => string;
};
