import { Uidl } from '@p-lc/uidl'; import { ElementOfUidl } from '../types'; /** * 合并子元素到属性里 * @param children 子元素 * @param props 属性 * @returns 新的属性对象 */ export declare function mergeChildrenToProps(children: ElementOfUidl['children'], props: ElementOfUidl['props']): NonNullable['props']>; /** * 将子元素从属性中分离 * @param props 属性 * @returns 新的子元素、属性对象 */ export declare function splitChildrenFromProps(props: ElementOfUidl['props']): [ElementOfUidl['children'], ElementOfUidl['props']]; //# sourceMappingURL=props.d.ts.map