export interface PressableCandidate { name: string; meaningfulComponentName?: string | null; text: string; testID: string | null; ancestorTestIDs?: string[]; path?: string; isInput: boolean; isPressable?: boolean; source?: string; } export interface FiberMatchQuery { text?: string; testID?: string; component?: string; index?: number; } export interface FiberMatchResult { matchIndex: number; candidate: PressableCandidate; totalMatches: number; allMatches: number[]; } export declare function matchFiberCandidates(pressables: PressableCandidate[], query: FiberMatchQuery): FiberMatchResult | null; //# sourceMappingURL=fiberMatch.d.ts.map