import { FC } from "react"; export declare type PhotoCardProps = { title: string; yearsOld: number; }; export declare const Collapse: ({ show, children }: any) => JSX.Element; export declare const Avatar: ({ children }: { children: any; }) => JSX.Element; export declare const CardActions: ({ children }: { children: any; }) => JSX.Element; export declare const Card: ({ children }: { children: any; }) => JSX.Element; export declare const CardHeader: ({ title, avatarContent, }: { title: string; avatarContent: any; }) => JSX.Element; export declare const CardImage: ({ children }: { children: any; }) => JSX.Element; declare const PhotoCard: FC; export default PhotoCard;