import type { Snippet } from 'svelte'; interface PropsWithChildren { /** * The default slot content to be rendered within the component. */ children?: Snippet; } export type { PropsWithChildren };