/** * Hook for managing credit card flip state * Useful when creating custom forms with CreditCard component */ export declare const useCreditCardFlip: () => { isBackVisible: boolean; showBack: () => void; showFront: () => void; toggleCard: () => void; setIsBackVisible: import("react").Dispatch>; };