import type { TestInstance } from 'test-renderer';
import type { TextMatch } from '../../matches';
export interface AccessibilityValueMatcher {
    min?: number;
    max?: number;
    now?: number;
    text?: TextMatch;
}
export declare function matchAccessibilityValue(instance: TestInstance, matcher: AccessibilityValueMatcher): boolean;
