react-navigation-stack
Version:
Stack navigator component for React Navigation
11 lines (10 loc) • 414 B
TypeScript
/**
* The native MaskedView that we explicitly re-export for supported platforms: Android, iOS.
*/
import * as React from 'react';
declare type MaskedViewType = typeof import('@react-native-community/masked-view').default;
declare type Props = React.ComponentProps<MaskedViewType> & {
children: React.ReactElement;
};
export default function MaskedView({ children, ...rest }: Props): JSX.Element;
export {};