UNPKG

@100mslive/react-native-room-kit

Version:

100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.

18 lines 660 B
import * as React from 'react'; import type { StyleProp, ViewStyle, TextStyle, TextProps } from 'react-native'; export interface HMSNotificationProps { id: string; text: string | React.ReactElement; description?: string | React.ReactElement; textTestID?: TextProps['testID']; style?: StyleProp<ViewStyle>; textStyle?: StyleProp<TextStyle>; icon?: string | React.ReactElement; onDismiss?: () => void; autoDismiss?: boolean; dismissDelay?: number; cta?: React.ReactElement; dismissable?: boolean; } export declare const HMSNotification: React.FC<HMSNotificationProps>; //# sourceMappingURL=HMSNotification.d.ts.map