export declare type PickKeysByValue<Type, Value> = {
  [Key in keyof Type]: Type[Key] extends Value ? Key : never;
}[keyof Type];
