import React from 'react';
import { SeoToolsContextValue } from '../context';
import type { SanityDocument } from '@sanity/types';
type Props = React.PropsWithChildren<{
    options?: Partial<SeoToolsContextValue>;
    document?: {
        displayed?: SanityDocument;
    };
}>;
export declare const SeoToolsPane: React.FC<Props>;
export {};
