import React from 'react'; import { BannerGeneratorRef } from '../BannerGenerator'; import { BannerTemplate, GraphData, ProgressStats, UserProfile, TrackerType, SocialShareModalLabels } from '../../types'; export type LayoutType = 'stats' | 'graph'; interface BannerPreviewProps { title: string; darkMode?: boolean; layoutType: LayoutType; onLayoutChange: (type: LayoutType) => void; stats: ProgressStats; profile?: UserProfile; template: BannerTemplate; graphData: GraphData; bannerGeneratorRef: React.RefObject; onBannerGenerated: (uri: string) => void; trackerType: TrackerType; bannerTitle?: string; bannerFooter?: string; statLabels?: SocialShareModalLabels; } export declare const BannerPreview: React.FC; export {};