import { HTMLAttributes } from 'svelte/elements';
import { Snippet } from 'svelte';
type ViewportProps = HTMLAttributes & {
/**
* The ID of the document that this viewport displays
*/
documentId: string;
children: Snippet;
class?: string;
};
declare const Viewport: import('svelte', { with: { "resolution-mode": "import" } }).Component;
type Viewport = ReturnType;
export default Viewport;