///
import type { DivProps } from "../types";
export interface EmptyCardProps extends DivProps {
alt?: string;
cover?: string;
defaultVisible?: boolean;
desc: string;
height?: number;
onVisibleChange?: (visible: boolean) => void;
title: string;
visible?: boolean;
width?: number;
}
declare const EmptyCard: import("react").NamedExoticComponent;
export default EmptyCard;