import { StateOptions } from '../core'; /** * DeviceType * * @type {string} */ export declare type DeviceType = 'desktop' | 'tablet' | 'phone'; /** * Get the current device type * * The device will only indicate roughly how big the viewport is, not what actual device is being used * * @param {StateOptions} [options] state decorator options * @returns {Function} state decorator */ export declare function SelectDevice(options?: StateOptions): PropertyDecorator;