import React from 'react'; interface CoverImageProps { src: string; alt?: string; isDisabled?: boolean; } /** * This is instead of using background-image in CSS as design-system doesn't support that */ export declare const CoverImage: ({ src, alt, isDisabled }: CoverImageProps) => React.JSX.Element; export {};