import '@shoelace-style/shoelace/dist/components/input/input'; import '@shoelace-style/shoelace/dist/components/icon/icon'; import type { AxiosInstance } from 'axios'; import EhrElement from '../EhrElement'; export default class MbMultimedia extends EhrElement { data: { _root?: string | undefined; data?: string | undefined; mediatype: string | undefined; alternatetext: string | undefined; size: number | undefined; } | undefined; src: string; label: string; parentAxiosKey: string; required: boolean; loading: boolean; base64: boolean; axios: AxiosInstance; plugin: { storageAPI: import("./mediaFunction").StoragePlugin; }; get _parentAxios(): AxiosInstance; _handleChange(e: any): Promise; handleInput(): Promise; getSrc(): void; render(): import("lit-element").TemplateResult; }