import React from 'react'; interface Props { onLike: () => void; onDislike: () => void; } declare const Main: React.FC; export default Main;