import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type $$ComponentProps = HTMLAttributes & { children?: Snippet; }; declare const AlertDialogFooter: import("svelte").Component<$$ComponentProps, {}, "">; type AlertDialogFooter = ReturnType; export default AlertDialogFooter;