import * as React from 'react'; import type { File } from './workflow-attachment'; interface Props { record: File; isDesign: boolean; queryFilesList: (docId: string) => Promise; docId: string; selectedRows: File[]; documentPermissions: Array<{ documentTypeCode: string; permissions: string[]; }>; setEditRow: React.Dispatch<(prevState: string) => undefined>; } declare const Operations: React.FC; export default Operations;