import React from 'react'; import { CardProps } from './Card'; interface TextAlignProps { textAlign?: 'left' | 'center' | 'right'; } interface ContentProps { title: string; subtitle?: string; } interface ImageProps { imageSrc: string; imageRatio?: string; imageCustomRatio?: string; } interface CardExampleProps extends Omit, ContentProps, ImageProps, TextAlignProps { } export declare const ProductCard: React.FC; export declare const MusicCard: React.FC; export declare const GalleryCard: React.FC; export {}; //# sourceMappingURL=Card.examples.d.ts.map