import React from 'react'; export type TTarotDemo = 'major' | 'minor-pips' | 'minor-court' | 'reversed' | 'suits'; export declare function TarotCardView({ goBack, }: { readonly goBack?: () => void; }): React.JSX.Element;