/**
 * Find keys where values match pred. pred can be a lodash iteratee.
 */
export declare function findKeys<A = any>(pred: string | object, obj: Record<string, A>): string[];
