import type { Snippet } from 'svelte'; interface ResizableProps { orientation?: 'horizontal' | 'vertical'; defaultSize?: number; minSize?: number; maxSize?: number; start?: Snippet; end?: Snippet; class?: string; } declare const Resizable: import("svelte").Component; type Resizable = ReturnType; export default Resizable;