import { PropsWithChildren } from 'react'; export interface TabProps { icon?: string; isActive?: boolean; className?: string; after?: React.ReactNode; value: number; /** * on tab select handler */ onClick?: (value: number) => void; } export declare function Tab({ onClick, icon, value, children, className, after }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;