/**
 * Responsive breakpoints defined in Neon. These cover both smaller than & larger than cases for ultimate flexibility in
 * defining responsive styles. See the <a href="/design/responsiveness">responsiveness</a> documentation for more
 * details.
 */
export declare enum NeonResponsive {
    /**
     * Defines <em>NO</em> breakpoint. This is only used for defining the global <a href="/layout/grid">NeonGrid</a>
     * breakpoint layout.
     */
    All = "all",
    /** Defines a desktop breakpoint of <strong>max-width: 1439px</strong>. */
    Desktop = "desktop",
    /** Defines a larger than desktop breakpoint of <strong>min-width: 1440px</strong>. */
    DesktopLarge = "desktop-large",
    /** Defines a larger than tablet breakpoint of <strong>min-width: 1025px</strong>. */
    LargerThanTablet = "larger-than-tablet",
    /** Defines a tablet breakpoint of <strong>max-width: 1024px</strong>. */
    Tablet = "tablet",
    /** Defines a larger than mobile large breakpoint of <strong>min-width: 600px</strong>. */
    LargerThanMobileLarge = "larger-than-mobile-l",
    /** Defines a large mobile breakpoint of <strong>max-width: 599px</strong>. */
    MobileLarge = "mobile-large",
    /** Defines a larger than mobile breakpoint of <strong>min-width: 415px</strong>. */
    LargerThanMobile = "larger-than-mobile",
    /** Defines a mobile breakpoint of <strong>max-width: 414px</strong>. */
    Mobile = "mobile"
}
