interface RegisterFormProps { title?: string; subtitle?: string; loading?: boolean; class?: string; onsubmit?: (payload: { name: string; email: string; password: string; confirmPassword: string; terms: boolean; }) => void; } declare const RegisterForm: import("svelte").Component; type RegisterForm = ReturnType; export default RegisterForm;