import { StudioComponent, StudioComponentChild, WrappedComponentProperties } from './types'; import { StudioNode } from './studio-node'; /** * Shared class for rendering components. * Mostly contains helper functions for mapping the Studio schema to actual props. */ export declare abstract class CommonComponentRenderer { protected component: StudioComponent | StudioComponentChild; protected parent?: StudioNode | undefined; protected inputProps: WrappedComponentProperties; protected node: StudioNode; constructor(component: StudioComponent | StudioComponentChild, parent?: StudioNode | undefined); } //# sourceMappingURL=common-component-renderer.d.ts.map