import type { Predicate } from "../General";
import type { Result } from "../Result";
export declare function findInRecord<K extends keyof any, T>(pred: Predicate<[T, K]>, rs: Record<K, T>): Result<[K, T], void>;
