/** * Reserved props */ export declare const PROPS_RESERVED: { children: boolean; parent: boolean; object: boolean; physics: boolean; physicsType: boolean; instance: boolean; scene: boolean; }; /** * Removes any props that have reserved names * @param props */ export default function sanitizeProps(props: Record): Record;