import type { Viewport } from 'react-cosmos-core'; import type { PluginContext } from 'react-plugin'; import type { StorageSpec } from '../Storage/spec.js'; import type { ResponsivePreviewSpec } from './spec.js'; export type ResponsivePreviewContext = PluginContext; export type StorageMethods = StorageSpec['methods']; export type ViewportState = { enabled: boolean; scaled: boolean; viewport: Viewport; }; export declare const DEFAULT_DEVICES: { label: string; width: number; height: number; }[]; export declare const VIEWPORT_STORAGE_KEY = "responsiveViewportState"; export declare const DEFAULT_VIEWPORT_STATE: ViewportState;