import { TextStyle, ViewStyle } from "react-native";

export type Props = {
  onClose?: () => void;
  onShow?: () => void;
  title?: string;
  userTitle?: String;
  description?: string;
  style?: {
    mainViewStyle?: ViewStyle;
    headerViewStyle?: ViewStyle;
    headerTextStyle?: TextStyle;
    crossViewStyle?: ViewStyle;
    welcomeTextStyle?: TextStyle;
    middelViewStyle?: ViewStyle;
    descriptionTextStyle?: TextStyle;
    buttonViewStyle?: ViewStyle;
    buttonTextStyle?: TextStyle;
    iconViewStyle?: ViewStyle;
    footerViewStyle?: TextStyle;
    footerTextStyle?: ViewStyle;
  };
};
