import React from "react";
interface ThreeDPerspectiveCardProps {
    /** The URL for the background image of the card. */
    image: string;
    /** Optional width of the card (e.g., "300px"). Defaults to "300px". */
    width?: string;
    /** Optional height of the card (e.g., "350px"). Defaults to "350px". */
    height?: string;
}
export declare const ThreeDPerspectiveCard: React.FC<ThreeDPerspectiveCardProps>;
export default ThreeDPerspectiveCard;
