/** * Returns `true` if the user agent indicates a tablet device. * * @example * isTablet() // true on iPad or Android tablet * @since 1.0.0 */ declare const isTablet: () => boolean; export default isTablet;