import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; export type ScrollerBaseProps = { onContentSizeChange?: (w: number, h: number) => void; style?: StyleProp; contentContainerStyle?: StyleProp; scrollEnabled?: boolean; pinchGestureEnabled?: boolean; nestedScrollEnabled?: boolean; }; /** * Factory to create a tab-integrated scroll component. * Wraps any scrollable component (FlatList, ScrollView, etc.) * and applies shared tab height and content size logic. * * Prefer assigning the returned wrapper to a distinct package-facing name such * as `SyncedLegendList` or `SyncedFlashList`. */ export declare function createTabScrollComponent

(Scroller: React.ComponentType

): React.FC

; //# sourceMappingURL=createTabScrollComponent.d.ts.map