import React, { ReactNode } from 'react'; type OneOrManyChildren = React.ReactElement | React.ReactElement[]; type MultiPathBlockProps = { children: OneOrManyChildren; }; export type LabelSyncPair = { label: string; syncWith?: string; }; declare const MultiPathBlock: (props: MultiPathBlockProps) => import("@emotion/react/jsx-runtime").JSX.Element; type PathBlockProps = LabelSyncPair & { children: ReactNode; }; export declare const PathBlock: (props: PathBlockProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default MultiPathBlock;