UNPKG

342 BPlain TextView Raw
1import * as React from 'react';
2import { View } from 'react-native';
3
4export type BlurProps = {
5 tint: BlurTint;
6 intensity: number;
7} & React.ComponentProps<typeof View>;
8
9export type BlurTint = 'light' | 'dark' | 'default';
10
11export type ComponentOrHandle =
12 | null
13 | number
14 | React.Component<any, any>
15 | React.ComponentClass<any>;