import * as React from 'react'; declare type Props = React.PropsWithChildren<{ tabBarPosition?: 'left' | 'right'; renderTabBar: () => JSX.Element; }>; export default function RenderWithPositionConfig({ children, tabBarPosition, renderTabBar, }: Props): JSX.Element; export {};