import React from 'react'; import { EntityProps } from './entity'; import type { OpenContainerDataMapping } from './schema-types'; import type { BreakpointStyles } from './schema-types/new-style/types'; export declare type MutateOpenContentMapping = { get: (K: keyof OpenContainerComponentProps) => { set: (val: Partial) => void; }; }; export declare type OpenContainerComponentProps = { children: OpenContainerDataMapping[]; openContainerLayout?: { data: Partial; }; styles: Partial; }; export declare const OpenContainerEntity: React.NamedExoticComponent & { render: (renderComponent: () => JSX.Element, wrapperStyles: string, updateLayout: (newLayout: BreakpointStyles) => void) => void; }>;