/** * Helper function that will extract all props from an object and will return them. * The rest returned are the ones that don“t belong to the object. * @internal */ export declare function extract(obj: T, keys: Array): { extracted: Pick; rest: Omit; };