import React from 'react'; interface CoverImageProps { image: string; isFigma?: boolean; coverNode?: React.ReactNode; } declare function CoverImage(props: CoverImageProps): JSX.Element; export default CoverImage;