import type { Snippet } from "svelte"; import type { HTMLFormAttributes } from "svelte/elements"; type $$ComponentProps = { ref?: HTMLFormElement | undefined; attributes?: HTMLFormAttributes | undefined; children: Snippet; }; declare const Form: import("svelte").Component<$$ComponentProps, {}, "ref">; type Form = ReturnType; export default Form;