import React from 'react'; export declare type Breakpoints = 'xxxs' | 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xlg' | 'xxlg'; export declare type ResponsiveSizes = Exclude; declare type BreakpointProps = { /** Show contents at specific breakpoint */ at?: Breakpoints; /** Show contents at and narrower than specified breakpoints */ narrowerThan?: Breakpoints; /** Show contents at and wider than specified breakpoints */ widerThan?: Breakpoints; }; declare const Breakpoint: React.FunctionComponent; export default Breakpoint;