import type { HTMLButtonAttributes } from 'svelte/elements'; import type { TRoot } from '../root/createRoot.svelte.js'; interface Props extends HTMLButtonAttributes { root?: TRoot; } declare const Close: import("svelte").Component; type Close = ReturnType; export default Close;