import type { FC } from 'react'; export interface OtpInputGroupProps { className?: string; error?: string; loading?: boolean; showErrorMessage?: boolean; emittedOTP(otp: string[]): void; } export declare const OtpInputGroup: FC;