export interface IMeta {
    [x: string]: string | string[] | any;
}
export interface IMarkdown {
    document: string;
    meta: any;
}
