import React from 'react';
export type TabBarProps = {
    color: string;
    selectedColor: string;
    backgroundColor: string;
    borderStyle?: 'black' | 'white';
    list: {
        pagePath: string;
        iconPath?: string;
        selectedIconPath?: string;
        text: string;
    }[];
};
declare const _default: (props: {
    tab?: TabBarProps;
}) => React.ReactPortal;
export default _default;
