import { IterableDiffer, KeyValueDiffer } from '@angular/core'; import { RenderKit } from '../shared/render-kit'; import { Properties, VNode } from '../shared/types'; export declare function createPropDiffer(kit: RenderKit, props?: Properties): KeyValueDiffer; export declare function createChildDiffer(kit: RenderKit, children?: VNode[]): IterableDiffer; export declare function isEventLikeProp(prop: string): boolean; export declare function parseEventName(prop: string): string;