react-native-screens
Version:
Native navigation primitives for your React Native app.
10 lines • 549 B
TypeScript
import type { CodegenTypes as CT, ViewProps } from 'react-native';
export type HeaderSubviewTypes = 'back' | 'right' | 'left' | 'title' | 'center' | 'searchBar';
export interface NativeProps extends ViewProps {
type?: CT.WithDefault<HeaderSubviewTypes, 'left'>;
hidesSharedBackground?: boolean;
synchronousShadowStateUpdatesEnabled?: CT.WithDefault<boolean, false>;
}
declare const _default: import("react-native").HostComponent<NativeProps>;
export default _default;
//# sourceMappingURL=ScreenStackHeaderSubviewNativeComponent.d.ts.map