import { ParallaxBackgroundRendererProps } from './renderer'; import { ParallaxBackgroundControlsProps } from './controls'; import { ContentPluginConfig } from 'react-page-nm-core/lib/service/plugin/classes'; export type ParallaxBackgroundSettings = { Renderer: React.ComponentType; Controls: React.ComponentType; defaultPlugin: ContentPluginConfig; // tslint:disable-next-line:no-any getInitialChildren?: () => any; };