import type { LocalAttachment } from 'stream-chat'; export type MediaBadgeVariant = 'video' | 'voice-recording' | string; export type MediaBadgeProps = { attachment: LocalAttachment; variant: 'video' | 'voice-recording' | string; }; export declare const MediaBadge: ({ attachment, variant }: MediaBadgeProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MediaBadge.d.ts.map