import { TextStyle, ViewStyle } from "react-native";

export type Props = {
  title?: string;
  description?: string;
  onThumbsUp?: () => void;
  onThumbsDown?: () => void;
  mainViewStyle?: ViewStyle;
  titleTextStyle?: TextStyle;
  descriptionTextStyle?: TextStyle;
  buttonViewStyle?: ViewStyle;
};

export type Tthumb = "up" | "down";
