import { CapturedMatcher } from './capture'; import { Matcher } from './Matcher'; export declare class FromCaptureMatcher extends Matcher { private readonly capturedMatcher; constructor(capturedMatcher: CapturedMatcher); matchValue(value: unknown): value is T; } export declare function fromCapture(capturedMatcher: CapturedMatcher): Matcher;