import { SxProps } from '@mui/material'; import { default as React, PropsWithChildren } from 'react'; /** * Allows you to display an array of inputs with a label and a helper text with the Mantis theme style. */ declare function LabeledArrayInput({ label, children, display, helperText, sx, addLabel, divider, fullWidth, ...props }: LabeledArrayInputProps): React.ReactElement; type LabeledArrayInputProps = PropsWithChildren<{ label?: string | boolean; addLabel?: boolean; resource?: string; isRequired?: boolean; source: string; display?: 'legend' | 'label'; helperText?: string | boolean; divider?: boolean; sx?: SxProps; fullWidth?: boolean; }>; export { LabeledArrayInput }; export type { LabeledArrayInputProps }; //# sourceMappingURL=LabeledArrayInput.d.ts.map