import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren } from 'react'; type AbstractProps = PropsWithChildren<{ /** `true` のとき、TabBar に下線を表示する */ bordered?: boolean; }>; type Props = AbstractProps & Omit, keyof AbstractProps | 'role'>; export declare const TabBar: FC; export {};