import { ReactElement } from 'react'; import { ViewProps } from 'react-native'; type ViewType = (props: T, context?: any) => ReactElement | null; export interface ColType { (props: T, context?: any): ReactElement | null; TL: ViewType; T: ViewType; TR: ViewType; L: ViewType; C: ViewType; R: ViewType; BL: ViewType; B: ViewType; BR: ViewType; TBL: ViewType; TB: ViewType; TBR: ViewType; BTL: ViewType; BT: ViewType; BTR: ViewType; LRT: ViewType; LRC: ViewType; LRB: ViewType; } export interface RowType { (props: T, context?: any): ReactElement | null; TL: ViewType; T: ViewType; TR: ViewType; L: ViewType; C: ViewType; R: ViewType; BL: ViewType; B: ViewType; BR: ViewType; LRT: ViewType; LR: ViewType; LRB: ViewType; RLT: ViewType; RL: ViewType; RLB: ViewType; TBL: ViewType; TBC: ViewType; TBR: ViewType; } export {};