import { FormControlProps } from "@mui/material/FormControl";
import React from "react";
/**
 * FieldSetEx props
 */
export type FieldSetExProps = Omit<FormControlProps, "defaultValue" | "variant"> & {
    /**
     * Label
     */
    label?: string;
    /**
     * Helper text
     */
    helperText?: React.ReactNode;
};
/**
 * FieldSetEx
 * @param props Props
 * @returns Component
 */
export declare function FieldSetEx(props: FieldSetExProps): import("react/jsx-runtime").JSX.Element;
