import type { FC } from 'react';
import type { AttachmentFile } from './type';
interface AttachmentsListProps {
    onChange?: (value: string) => void;
    filedList?: AttachmentFile[];
    renderType?: string | undefined;
    getEngineApis?: any;
    disabled?: boolean;
}
declare const AttachmentsList: FC<AttachmentsListProps>;
export default AttachmentsList;
