sanity-plugin-seo
Version:
Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.
10 lines (9 loc) • 305 B
TypeScript
import React from "react";
import { AIField } from "../utils/aiGenerate";
interface Props {
field: AIField;
focusKeyword?: string;
onGenerate: (value: string) => void;
}
export default function AIGenerateButton({ field, focusKeyword, onGenerate }: Props): React.JSX.Element | null;
export {};