import React from 'react'; import type { NavigationState, PositionInterpolation, RenderTabsParams, SceneProps } from '../types/types'; export interface ReanimatedTabViewProps { renderTabBar?: (params: RenderTabsParams) => void; renderScene: (params: SceneProps) => React.ReactNode; navigationState: NavigationState; onIndexChange: (index: number) => void; percentageTrigger?: number; positionInterpolation?: PositionInterpolation; lazy?: boolean; LazyPlaceholder?: () => React.ReactNode; } export declare const ReanimatedTabView: React.NamedExoticComponent; //# sourceMappingURL=ReanimatedTabView.d.ts.map