import { FC } from 'react'; import { BaseCTAMomentProps } from '../cta'; export interface SymbolProps { id: string; name: string; unified: string; native: string; } interface ResponseMomentProps extends BaseCTAMomentProps { buttonText: string; count: number; hasSubmitted: boolean; onResponse: () => void; symbol: SymbolProps; tabIndex?: number; text: string; } declare const ResponseMoment: FC; export { ResponseMoment };