import { type Components } from '../../types'; import { type HTMLAttributes } from 'svelte/elements'; interface Props extends HTMLAttributes { components?: Components; } declare const SignIn: import("svelte").Component; type SignIn = ReturnType; export default SignIn;