///
import { type FilterOption } from "@prismicio/editor-ui";
export interface DocumentCardProps {
documentTypeId: string;
documentUrl: URL;
title: string;
statusColor: "grey" | "green" | "amber" | "purple";
previewImageUrl?: string;
description?: string;
tags: string[];
tagsFilter?: Set;
highlighted?: boolean;
highlightedUID?: string;
searchTerm?: string;
onSelect: () => void;
}
export declare function DocumentCard(props: DocumentCardProps): JSX.Element;