export declare class CreateNewsDto {
    title: string;
    slug: string;
    location: string;
    publishedAt: string;
    updatedAt?: string;
    featuredImage: string;
    excerpt: string;
    blocks?: any[];
    aboutProduct?: {
        title: string;
        content: string;
    };
    aboutCompany?: {
        title: string;
        content: string;
    };
    mediaContact?: {
        name: string;
        role?: string;
        email: string;
        phone?: string;
    };
    socialShare?: {
        facebook: boolean;
        linkedin: boolean;
        whatsapp: boolean;
        twitter: boolean;
    };
    seo?: {
        seoTitle: string;
        metaDescription?: string;
        keywords?: string;
        imageAltTag?: string;
        ogTagsRaw?: string;
        twitterTagsRaw?: string;
        schemaRaw?: string;
        robotsRaw?: string;
        canonicalUrl?: string;
    };
}
