UNPKG

react-web-native-sketch

Version:

[TODO: We need an overview of how this can be used via npm vs as a local package]

11 lines (10 loc) 413 B
import * as React from "react"; import { AlertData, hideAlert } from "../../redux/reducers/navigation"; import { AlertProps } from "./Alert.types"; export interface ConnectedProps { alerts: Array<AlertData>; hideAlert: typeof hideAlert; } declare const StyledAlert: React.ComponentType<AlertProps & ConnectedProps>; export default StyledAlert; export declare const Alert: React.ComponentType<AlertProps>;