import { Brand } from "./typescript/brand"; export type PropertyKey = Brand; export type PropertyValue = any; export type Properties = Record; /** * The only purpose of this function is to cast Object.keys to PropertyKey[] */ export declare function propertyKeys(properties: Properties): PropertyKey[];