import { Checkable, CheckOptions } from '../../common/fluentapi';
export declare const jasmineMatcher: {
    toPassAsync: () => {
        compare: (checkable: Checkable, options?: CheckOptions) => Promise<{
            pass: boolean;
            message: string;
        }>;
    };
};
