import type { CloneWithoutUndefinedProperties } from '../../types/internal';
/**
 * Clone object without properties that values is `undefined`.
 */
export declare const cloneWithoutUndefinedProperties: <Type extends object>(x: Type) => CloneWithoutUndefinedProperties<Type>;
