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