import * as React from "react"; import type { TabsProviderProps } from "../internal/RefsContext"; import type { TabViewProps } from "../tab-view"; import type { ScrollerContainerProps } from "./ScrollerContainer"; import type { TopSectionProps } from "./TopSection"; export interface SyncedTabsLayoutProps extends TabViewProps { /** * Content rendered above the tabs and measured 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 SyncedTabsLayout: React.FC; export default SyncedTabsLayout; //# sourceMappingURL=SyncedTabsLayout.d.ts.map