import * as React from "react"; import type { TabsProviderProps } from "../internal/RefsContext"; import type { TabViewProps } from "../TabView"; import type { ScrollerContainerProps } from "./ScrollerContainer"; import type { TopSectionProps } from "./TopSection"; export interface CollapsibleTabViewProps extends TabViewProps { /** * Content rendered above the tabs and collapsed by the shared scroller. */ header: React.ReactNode; /** * Optional props forwarded to TabsProvider for shared scroll behavior. */ tabsProviderProps?: Omit; /** * Optional props forwarded to the outer synchronized scroller. */ scrollerContainerProps?: Omit; /** * Optional props forwarded to the header measurement container. */ headerContainerProps?: Omit; } declare const CollapsibleTabView: React.FC; export default CollapsibleTabView; //# sourceMappingURL=CollapsibleTabView.d.ts.map