import * as React from "react"; export type BlocksWrapperProps = { blocks: BuilderBlock[] | undefined; parent: string | undefined; path: string | undefined; styleProp: Record | undefined; /** * The element that wraps each list of blocks. Defaults to a `div` element ('ScrollView' in React Native). */ BlocksWrapper: any; /** * Props to be applied to the wrapping element of blocks. Can be set in two ways: * 1. Globally via `` - applies to all blocks wrappers in the Content * 2. Locally via `` - applies only to this specific blocks instance and overrides global props * * For merging both global and local props, spread the context props before adding your own: * ``` * * ``` */ BlocksWrapperProps: any; children?: any; classNameProp?: string; }; import type { BuilderBlock } from "../../types/builder-block"; declare function BlocksWrapper(props: BlocksWrapperProps): React.JSX.Element; export default BlocksWrapper;