import React from 'react';
import { FinderProps } from '../../types';
export interface FinderRef {
    uploadImage: (file: any, callback: any) => void;
}
declare const Finder: React.ForwardRefExoticComponent<FinderProps & React.RefAttributes<FinderRef>>;
export default Finder;
