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; }; type SyncedTabScrollComponentProps

= P & ScrollerBaseProps & { index: number; width?: number; }; /** * Factory to create a synchronized tab 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 createSyncedTabScrollComponent(Scroller: React.ComponentType

): React.ForwardRefExoticComponent> & React.RefAttributes>; export {}; //# sourceMappingURL=createSyncedTabScrollComponent.d.ts.map