export interface VideoCardProps { source: any; tags?: Tags; callback?: any; } interface Tags { category: { id: number; name: string; slug: string; }[]; } export declare function VideoCard({ source, tags, callback }: VideoCardProps): JSX.Element; export {};