import { Instance } from "../instance-provider"; import { ILayerConstructable, ILayerProps, LayerInitializer } from "../surface"; import { Omit } from "../types"; /** * Can use this instead of createLayer to view changes streaming through a layer. */ export declare function debugLayer>(layerClass: ILayerConstructable & { defaultProps: U; }, props: Omit & Partial>): LayerInitializer;