export default TabsAdapter;
declare function TabsAdapter(props: any): import("react/jsx-runtime").JSX.Element;
declare namespace TabsAdapter {
    namespace propTypes {
        let errors: PropTypes.Requireable<object>;
        let schema: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
            items: PropTypes.Validator<(PropTypes.InferProps<{
                title: PropTypes.Validator<string>;
                items: PropTypes.Validator<any[]>;
            }> | null | undefined)[]>;
        }>>>;
    }
}
import PropTypes from 'prop-types';
