declare function typedKeys<T extends Record<string, any>>(data: T): (keyof T)[];

export { typedKeys };
