import React from 'react';
import { IntlShape } from 'react-intl';
export interface MetaInnerContainerProps {
    width: number;
    height: number;
}
type LoadTilesetTabProps = {
    meta: {
        [key: string]: any;
    };
    isAddingDatasets: boolean;
    onTilesetAdded: (tilesetInfo: any, metadata?: any) => void;
    intl: IntlShape;
};
declare function LoadTilesetTabFactory(): React.FC<LoadTilesetTabProps>;
export default LoadTilesetTabFactory;
