UNPKG

@retailmenot/anchor

Version:

A React UI Library by RetailMeNot

10 lines (9 loc) 324 B
import * as React from 'react'; import { BreakpointType } from '../utils'; export interface ResponsiveContextProps { breakpoints: BreakpointType[]; current: string; innerWidth: number; } export declare const ResponsiveContext: React.Context<ResponsiveContextProps>; export declare const ResponsiveProvider: any;