import { ApiVideoFeedType, type VideoFeedItem } from "../../types/video"; interface VideoFeedProps { feedType: ApiVideoFeedType; username?: string; communityId?: string; tag?: string; onVideoClick: (video: VideoFeedItem) => void; onAuthorClick: (author: string) => void; } export declare const VideoFeed: React.FC; export {};