export interface PageMeta {
    title: string;
    siteName: string;
    domain: string;
    description: string;
    robots: string;
    keywords: string;
    author: string;
    ogImage: string;
}

export interface BrandInformation {
    productName: string;
    productType: string;
    productVersion: string;
    productHash: string;
}

export interface BaseMessage {
    message: string;
    type: any;
}