import React from "react"; export interface TabPanelProps extends React.ComponentPropsWithoutRef<"div"> { index?: number; children?: React.ReactNode; } /** * @deprecated TabUI instead */ export declare const TabPanel: ({ index, children, ...props }: TabPanelProps) => import("@emotion/react/jsx-runtime").JSX.Element;