/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */
import { BreakPoint } from '../break-point';
export declare const ScreenTypes: {
    'HANDSET': string;
    'TABLET': string;
    'WEB': string;
    'HANDSET_PORTRAIT': string;
    'TABLET_PORTRAIT': string;
    'WEB_PORTRAIT': string;
    'HANDSET_LANDSCAPE': string;
    'TABLET_LANDSCAPE': string;
    'WEB_LANDSCAPE': string;
};
/**
 * Extended Breakpoints for handset/tablets with landscape or portrait orientations
 */
export declare const ORIENTATION_BREAKPOINTS: BreakPoint[];
