export type SchemaType = 'Product' | 'FAQPage' | 'Article';
export interface SeoConfig {
    title: string;
    description: string;
    image?: string;
    canonicalUrl?: string;
    robots?: 'index,follow' | 'noindex,nofollow' | 'index,nofollow' | 'noindex,follow';
    schema?: {
        type: SchemaType;
        data: Record<string, any>;
    }[];
    customMetaTags?: {
        name: string;
        content: string;
    }[];
}
export declare class SeoManagerPro {
    static updateSeo(config: SeoConfig): void;
    private static updateMeta;
    private static updateCanonical;
    private static addSchema;
    private static clearPrevious;
}
