import React from 'react';
import { LoadingMethod } from './load-data-modal';
interface ModalTabItemProps {
    currentMethod?: string;
    method: LoadingMethod;
    toggleMethod: (method: LoadingMethod) => void;
}
interface ModalTabProps {
    loadingMethods: LoadingMethod[];
    toggleMethod: (method: LoadingMethod) => void;
    currentMethod?: string;
}
export declare const ModalTabItem: React.FC<ModalTabItemProps>;
declare function ModalTabsFactory(): React.FC<ModalTabProps>;
export default ModalTabsFactory;
