/** * Lets you query whether a given CSS media query applies to the page (i.e. * whether user asked to use reduced motion, or whether the screen size is above * certain threshold). * * Documentation: https://webgis.esri.com/references/lumina/controllers/useMedia */ export declare const useMedia: (query: string) => boolean;