/** * This Source Code is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright (c) Infonomic Company Limited */ import type { BlocksField as BlocksFieldType } from '@byline/core'; export declare const BlocksField: ({ field, defaultValue, path, contentLocale, }: { field: BlocksFieldType; defaultValue: any; path: string; /** * Active content locale, forwarded to each block item's fields so * localized widgets nested inside a block (e.g. a `localized` richText) * can render their locale badge. */ contentLocale?: string; }) => import("react").JSX.Element;