import React from 'react';
import { BoxProps } from '@mantine/core';
import { LOCALE } from "../../../../interfaces/types";
import { PopoverProps } from "../../../../mantine";
export declare const Fields: ({ listBlockAdded, popupId, locale, onClose, onOtherSubmit, styles, classNames, popoverProps, }: {
    popoverProps: PopoverProps;
    listBlockAdded: any[];
    popupId?: string;
    locale: LOCALE;
    onClose?: () => void;
    onOtherSubmit?: () => void;
} & BoxProps) => React.JSX.Element;
