react-native-screens
Version:
Native navigation primitives for your React Native app.
19 lines • 584 B
TypeScript
import React from 'react';
import { SplitViewScreenProps } from './SplitViewScreen.types';
/**
* EXPERIMENTAL API, MIGHT CHANGE W/O ANY NOTICE
*/
declare function Column(props: SplitViewScreenProps): React.JSX.Element;
/**
* EXPERIMENTAL API, MIGHT CHANGE W/O ANY NOTICE
*/
declare function Inspector(props: SplitViewScreenProps): React.JSX.Element;
/**
* EXPERIMENTAL API, MIGHT CHANGE W/O ANY NOTICE
*/
declare const SplitViewScreen: {
Column: typeof Column;
Inspector: typeof Inspector;
};
export default SplitViewScreen;
//# sourceMappingURL=SplitViewScreen.d.ts.map