export declare function exclude<T extends {
    [k: string]: any;
}>(obj: T, keys: string[]): Partial<T>;
