import { default as React } from 'react';
import { ShapeProps } from '../Shape';
export interface CoverOptions {
    src: string;
}
export type CoverProps = CoverOptions & ShapeProps;
/**
 * @name Card.Cover
 */
export declare const Cover: React.FC<CoverProps>;
