import React, { Component } from 'react'; declare type DeviceType = 'mobile' | 'tablet' | 'desktop'; export declare const createMQ: (...devices: DeviceType[] | [DeviceType[]]) => string; interface IResponsiveProps { mobile?: boolean; tablet?: boolean; desktop?: boolean; onlyRenderOnMatch?: boolean; } export default class Responsive extends Component { renderChildrenFn: () => React.ReactNode; render(): JSX.Element; } export {};