export type Key = string | symbol; export declare const isPrivateKey: (key: Key) => boolean; export declare const isPublicKey: (key: Key) => boolean; export declare const hasPublicKey: (obj: any, key: Key) => boolean; export declare const publicKeys: (obj: any) => Key[];