import type { RichTextItemType } from "../richText/richTextItem.js";
import type { ComponentProps, ComponentType } from "react";
export type CodeAnnotationItemProps = ComponentProps<"code"> & {
    richTextItem?: RichTextItemType;
};
export type CodeAnnotationItem = ComponentType<CodeAnnotationItemProps>;
//# sourceMappingURL=code.d.ts.map