UNPKG

487 BTypeScriptView Raw
1/**
2 * Use a stub for MaskedView on all Platforms that don't support it.
3 */
4import type * as React from 'react';
5declare type Props = {
6 maskElement: React.ReactElement;
7 children: React.ReactElement;
8};
9export default function MaskedView({ children }: Props): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
10export {};