import React from "react"; import { StyleProp, TextStyle, ViewStyle } from "react-native"; export interface BannerProps { text: string | React.ReactElement | null; illustration?: React.ReactElement | ((props: { size: number; }) => React.ReactElement | null) | null; buttons: React.ReactElement | React.ReactElement[] | null; style?: StyleProp; contentContainerStyle?: StyleProp; illustrationContainerStyle?: StyleProp; textContainerStyle?: StyleProp; textStyle?: StyleProp; actionsContainerStyle?: StyleProp; } declare const Banner: React.FC; export default Banner;