export default ResizablePane; type ResizablePane = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A resizable pane within a ``. Must be a direct child of * ``. */ declare const ResizablePane: import("svelte").Component<{ /** * Default size. Numbers are percentages (0-100) of * the space the panes share, which is the group less its handles; strings can be any CSS * length/percentage such as `240px`, `20%` or `20dvw`. Panes without `defaultSize` share the * remaining space equally. */ defaultSize?: string | number | undefined; /** * Minimum size. Numbers are percentages, strings are CSS * lengths. Defaults to `0`. */ minSize?: string | number | undefined; /** * Maximum size. Numbers are percentages, strings are CSS * lengths. Defaults to `100`. */ maxSize?: string | number | undefined; /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; /** * Called whenever this pane’s size (in * percent) changes. */ onResize?: ((detail: { size: number; }) => void) | undefined; } & Record, {}, "">; type Props = { /** * Default size. Numbers are percentages (0-100) of * the space the panes share, which is the group less its handles; strings can be any CSS * length/percentage such as `240px`, `20%` or `20dvw`. Panes without `defaultSize` share the * remaining space equally. */ defaultSize?: string | number | undefined; /** * Minimum size. Numbers are percentages, strings are CSS * lengths. Defaults to `0`. */ minSize?: string | number | undefined; /** * Maximum size. Numbers are percentages, strings are CSS * lengths. Defaults to `100`. */ maxSize?: string | number | undefined; /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; /** * Called whenever this pane’s size (in * percent) changes. */ onResize?: ((detail: { size: number; }) => void) | undefined; }; import type { Snippet } from 'svelte';