UNPKG

414 BTypeScriptView Raw
1/**
2 * The native MaskedView that we explicitly re-export for supported platforms: Android, iOS.
3 */
4import * as React from 'react';
5declare type MaskedViewType = typeof import('@react-native-community/masked-view').default;
6declare type Props = React.ComponentProps<MaskedViewType> & {
7 children: React.ReactElement;
8};
9export default function MaskedView({ children, ...rest }: Props): JSX.Element;
10export {};