/** A utility for calling matchMedia queries. */ export declare class MediaMatcher { private _platform; private _matchMedia; constructor(); /** * Evaluates the given media query and returns the native MediaQueryList from which results * can be retrieved. * Confirms the layout engine will trigger for the selector query provided and returns the * MediaQueryList for the query provided. */ matchMedia(query: string): MediaQueryList; }