import { type StateProp } from '@innet/dom'; import { type CardProps } from '../Card'; export type FlipCardAnimation = 'vertical' | 'horizontal'; export type FlipCardProps = CardProps; animation?: FlipCardAnimation; revertAnimation?: boolean; }, S>; export declare function FlipCard({ flip, flex, inline, onclick, animation, revertAnimation, ...props }?: FlipCardProps): any;