import { LabeledArrayInputProps } from './LabeledArrayInput'; import { ArrayInputProps as RaArrayInputProps } from 'react-admin'; /** * Expose an ArrayInput component with Applica graphic style. * If you want to use the pure react-admin component you can use RaArrayInput exposed in the library. */ declare function ArrayInput({ label, addLabel, source, helperText, divider, ...props }: ArrayInputProps): React.ReactElement; type ArrayInputProps = RaArrayInputProps & LabeledArrayInputProps & { divider?: boolean; }; export { ArrayInput }; export type { ArrayInputProps }; //# sourceMappingURL=ArrayInput.d.ts.map