export interface ObjectType { [key: string]: string | number | boolean[]; } export interface HeaderProps { title: string; opacity: any; tintColor: string; rightDisable: boolean; setChange: (d: number) => void; iconPath: string; headerTextColor: string; } export interface HeaderViewProps { title: string; animateTitle: string; maxHeight: number; tintColor: string; rightDisable: boolean; speed: number; content: any; iconPath: string; headerTextColor: string; onClose: () => void; } export interface HeaderViewState { opacity: any; isScreening: boolean; } export interface TopAnimationProps { opacity: any; height: any; setChange: (d: number) => void; content: any; }