declare const findKeyByValue: (obj: {
    [key: string]: any;
}, value: string) => string | undefined;
export default findKeyByValue;
