import { ITheme } from '../theme/types'; /** * Devices * * @param {ITheme} props theme object * @returns {any} devices */ declare const devices: { /** * Monitor device * * @param {ITheme} device with theme * @returns {string} media query string */ desktop: ({ theme: { layout: { screens: { lg }, }, }, }: ITheme) => string; /** * Laptop device * * @param {ITheme} device with theme * @returns {string} media query string */ laptop: ({ theme: { layout: { screens: { md }, }, }, }: ITheme) => string; /** * Mobile device * * @param {ITheme} device with theme * @returns {string} media query string */ mobile: ({ theme: { layout: { screens: { xs }, }, }, }: ITheme) => string; /** * Tablet device * * @param {ITheme} device with theme * @returns {string} media query string */ tablet: ({ theme: { layout: { screens: { sm }, }, }, }: ITheme) => string; /** * Tv device * * @param {ITheme} device with theme * @returns {string} media query string */ tv: ({ theme: { layout: { screens: { xl }, }, }, }: ITheme) => string; }; export { devices };