export interface iOS_CourierCell {
  separatorStyle?: 'none' | 'singleLine' | 'singleLineEtched';
  separatorInsets?: {
    top?: number;
    left?: number;
    bottom?: number;
    right?: number;
  };
  separatorColor?: string;
  selectionStyle?: 'none' | 'blue' | 'gray' | 'default';
}
