import React from 'react'; import './CardFlip.scss'; type CardFlipProps = { isFlipped: boolean; children: [React.ReactNode, React.ReactNode]; className?: string; 'data-testid'?: string; }; /** * Card flip component, switches between a front and back face being visible. * Has logic to handle overflow on body, caused by perspective transforms * and moves z-index to top during transition. * @param isFlipped true shows second child, false shows first child * @param children Expects exactly two children * @returns */ declare function CardFlip({ className, isFlipped, children, 'data-testid': dataTestId, }: CardFlipProps): JSX.Element; export default CardFlip; //# sourceMappingURL=CardFlip.d.ts.map