import type { Snippet } from 'svelte'; interface AuthCardProps { title?: string; description?: string; brand?: string; mark?: string; /** Official brand logo URL (SVG/PNG) for BrandMark */ logoSrc?: string; class?: string; footer?: Snippet; children?: Snippet; } declare const AuthCard: import("svelte").Component; type AuthCard = ReturnType; export default AuthCard;