import type { HTMLAttributes } from './html-attributes.js';
import type { Snippet } from 'svelte';
import type { SvelteHTMLElements } from 'svelte/elements';
interface PropsWithElement {
/**
* Render the element yourself
*/
element?: Snippet<[HTMLAttributes]>;
}
export type { PropsWithElement };