/** * A util function to validate if the device * is tablet or not * * @returns boolean - true or false * @author TK * @remarks React Native Commons Collection */ /** End file docs */ import { ORIENTATION } from './type'; export declare const listenOrientationChange: (setOrientation: (item: ORIENTATION) => void) => void;