export declare type SocialMedia = { src: string; label: string; }; export declare type InfoGrid = { title: string; data: PeopleInfo[]; }; export declare type StatsGrid = { icon: string; progress: number; label: string; icon_color: string; icon_background: string; active: boolean; }; export declare type PeopleInfo = { name: string; avatar: string; progress: number; ratings: number; time: string; daysLeft: string; }; export declare type CardData = { heading: string; value: string; interval: string; }; export declare type GraphData = { series: Series[]; colors: []; dates: []; days: number; title: string; }; export declare type Series = { name: string; data: []; color: string; };