import { AuthenticationStatus } from '../../../types/index.js'; type AuthenticationType = '3DS' | 'Device Biometric' | 'Non-3DS'; export interface AuthIconsProps { transactionStatus?: AuthenticationStatus; isTextShown?: boolean; eci?: string; authType?: AuthenticationType; } export declare const AuthSourceAnimation: (index: number, shadow: string, xDelta?: number) => { start: { opacity?: number | undefined; x: number; transition: { duration: number; type: string; ease: string; }; }; animate: { opacity?: number | undefined; x: number; transition: { duration: number; type: string; ease: string; }; boxShadow: string; }; }; export {};