import React from "react"; export interface TabsProps { children?: React.ReactNode; disableAnimation?: boolean; items?: TabsItemProps[]; } export interface LinePosition { left?: number; right?: number; top?: number; bottom?: number; width?: number; height?: number; } export interface TabsContextProps { moveLine: (linePosition: LinePosition) => void; } export interface TabsItemProps extends React.ButtonHTMLAttributes { children: string; selected?: boolean; }