declare function split, K extends keyof T>(object: T, keys: K[]): [{ [P in K]: T[P]; }, Omit]; export { split };