import { ReactNode } from "react"; import { CurvesUnit, DurationUnit, SizeUnit } from "../types"; /** * This namespace provides components for horizontal and vertical tab navigation. * It handles the rendering of navigation items and applies transitions for * visual effects when changing the active tab. */ export declare namespace TabNavigation { /** Signature for the interface that defines a custom style of tab-navigation. */ interface Style { backgroundColor?: string; borderRadius?: string; width?: string; thickness?: string; } /** This value defines a default style of tab-navigation. */ const DEFUALT_STYLE: Required