import { FormTypes } from '@oneblink/types'; import * as React from 'react'; import { FormElementConditionallyShownElement } from '../../types/form'; type Props = { options: FormTypes.ChoiceElementOption[] | undefined; conditionallyShownOptionsElement: FormElementConditionallyShownElement | undefined; children: React.ReactNode; }; declare function FormElementOptions({ options, children, conditionallyShownOptionsElement, }: Props): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;