import { CreatedInstance } from './CreatedInstance'; import { PropertyUpdate } from './PropsHandler'; export declare const applyUpdateToInstance: (createdInstance: CreatedInstance, update: PropertyUpdate) => void; /** * Only applied in this way immediately after instantiation (not on deltas) * * @param instance * @param props */ export declare const applyInitialPropsToCreatedInstance: (createdInstance: CreatedInstance, props: any) => void;