import * as React from "react"; interface MoreProps { moreVisible: boolean; onClickPhoto?: () => void; onClickPhrase?: () => void; } declare const More: React.FC; export default More;