import { PropsWithChildren } from 'react'; import { SupportedBlocks } from './types'; interface Props extends PropsWithChildren { data: { block?: { type: string; props: any; }; }; supportedBlocks: SupportedBlocks; className?: string; } export declare const OneOfBlock: ({ data: { block, ...additionalProps }, supportedBlocks, children, className }: Props) => import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=OneOfBlock.d.ts.map