import type { Frontmatter } from 'types/frontmatter';
export declare const DATA_PATH: string;
export declare const getAllFrontmatter: (fromPath: any) => any;
export declare const getMdxBySlug: (basePath: any, slug: any) => Promise<{
    frontmatter: Frontmatter;
    code: string;
}>;
