import React from 'react'; import { BlueprintConfig, OutputKVMap } from '../ldaccess/ldBlueprint'; import { IBlueprintItpt } from '../ldaccess/ldBlueprint'; import { ILDOptions } from '../ldaccess/ildoptions'; import { KVL } from '../ldaccess/KVL'; import { Component } from 'react'; declare type OwnProps = {}; declare type ConnectedState = {}; declare type ConnectedDispatch = { fileChange: (fileList: FileList, url: string) => void; }; export declare class PureImgUploader extends Component implements IBlueprintItpt { cfg: BlueprintConfig; outputKVMap: OutputKVMap; ownKVLs: KVL[]; consumeLDOptions: (ldOptions: ILDOptions) => any; onClickFileChange: (e: React.FormEvent) => void; render(): JSX.Element; private getStringValFromKey; } export {};