import { ViewStyle, TextStyle } from "react-native";

export interface Props {
  title?: string;
  description?: string;
  referralLink:string;
  buttonText?: string;
  style?: Istyle;
  header?:string;
  headerDescrption?:string;
  loading?:boolean
}

export interface Istyle {
  mainViewStyle?: ViewStyle;
  headerTextStyle?: TextStyle;
  descriptionTextStyle?: TextStyle;
  codeViewStyle?: ViewStyle;
  codeTextStyle?: TextStyle;
  inviteButtonViewStyle?: ViewStyle;
  buttonTextStyle?: TextStyle;
  headingText?: TextStyle;
  detailText?: TextStyle;
  middalView?: ViewStyle;
}
