interface OtpVerifyProps { title?: string; subtitle?: string; length?: number; loading?: boolean; resendSeconds?: number; class?: string; onverify?: (code: string) => void; onresend?: () => void; } declare const OtpVerify: import("svelte").Component; type OtpVerify = ReturnType; export default OtpVerify;