import React from 'react'; export type DeviceProviderProps = { children: React.ReactNode; tabletMinWidth: string; desktopMinWidth: string; }; declare const DeviceProvider: ({ children, tabletMinWidth, desktopMinWidth, }: DeviceProviderProps) => React.JSX.Element; export default DeviceProvider;