///
import { type FilterOption } from "@prismicio/editor-ui";
interface DocumentsModalProps {
open: boolean;
onOpenChange: (open: boolean) => void;
onSelectDocument: (documentID: string) => void;
fixedCustomTypes?: Set;
fixedTags?: Set;
linkedDocumentId?: string;
}
export declare function DocumentsModal(props: DocumentsModalProps): JSX.Element;
interface SortTagsByFilteredTagsArgs {
tagsFilter: Set;
tags: string[];
}
export declare function sortTagsByFilteredTags(args: SortTagsByFilteredTagsArgs): string[];
export {};