/**
 * delete some props if needed, will not modify the pass argument
 * @param props
 * @returns {Produced<*, *>}
 */
export default function cleanProps(props: {
    [x: string]: any;
}): {
    [x: string]: any;
};
