importReactfrom'react';
interfaceCoverImageProps {
src: string;
alt?: string;
}
/**
* This is instead of using background-image in CSS as design-system doesn't support that
*/exportdeclareconstCoverImage: ({ src, alt }: CoverImageProps) =>React.JSX.Element;
export {};