import { MatchResult, PromiseLikeOrValue } from './types'; export declare function checkSync(matchResult: MatchResult): void; export declare function checkAsync(matchResultAsync: PromiseLikeOrValue>): Promise; export declare function check(matchResult: MatchResult): void; export declare function check(matchResult: PromiseLike>): PromiseLikeOrValue;