import { default as React } from 'react';
export interface PreviewCardProps {
    /** The children of the preview card */
    children: React.ReactNode;
    /** The title of the preview card */
    title?: string;
    /** The class name of the preview card */
    className?: string;
}
declare const PreviewCard: ({ children, title, className }: PreviewCardProps) => import("react/jsx-runtime").JSX.Element;
export default PreviewCard;
//# sourceMappingURL=PreviewCard.d.ts.map