import type { FC } from 'react'; interface AutographFile { appId: string; fileId: string; fileName: string; } interface InnerAutographProps { fieldAttr: string[]; value?: AutographFile; onChange?: (value?: AutographFile) => void; disabled?: boolean; $$componentItem?: any; getEngineApis?: any; } declare const InnerAutograph: FC; export default InnerAutograph;