/** * A Type Guard to check if given value type is equal to "string", "number" or "symbol" * * @category Type Guard */ declare const isPropertyKey: import("./matchTypeIn").MatchTypeInFn<("string" | "number" | "symbol")[]>; export { isPropertyKey };