/// 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: ({ title, subtitle, imageSrc, ...rest }: CardExampleProps) => JSX.Element; export declare const MusicCard: ({ title, subtitle, roundness, imageSrc, imageRatio, imageCustomRatio, textAlign, ...rest }: CardExampleProps) => JSX.Element; export declare const GalleryCard: ({ title, subtitle, imageSrc, imageRatio, imageCustomRatio, textAlign, ...rest }: CardExampleProps) => JSX.Element; export {};