/**
 * Filters an object to only include specified keys.
 * @param obj The object to filter.
 * @param keys An array of keys to include in the filtered object.
 * @returns A new object with only the specified keys.
 */
export declare function filterObject<T extends object, K extends keyof T>(obj: T, keys: K[]): Pick<T, K>;
