export declare function filterUndefined(obj: {
    [key: string]: string | any | undefined;
}): {
    [key: string]: string;
};
