/** * Unfortunately we need some casting as we do not know which properties are available on the object. */ interface GenericRecord { [key: string]: any; } export declare const getObjectProperties: (input: unknown) => T; export {};