import React from 'react'; import { TrackerType } from '../../types'; interface ShareStepProps { trackerType: TrackerType; bannerTitle?: string; darkMode?: boolean; onShare: (platform: string) => void; } export declare const ShareStep: React.FC; export {};