import type { BlogTypeOptions } from "@vuepress/plugin-blog";
export interface SlidesOptions {
    /**
     * Path of this blog type
     *
     * 此博客类型的路径
     *
     * @default "/slides/"
     */
    path?: string;
    /**
     * Locales for the blog type
     *
     * 博客类型的本地化文文字
     *
     * @example {
     *  '/': 'Slides',
     *  '/zh/': '幻灯片',
     * }
     */
    locales?: Record<string, string>;
}
export declare const getSlides: ({ path, locales, }: SlidesOptions) => BlogTypeOptions;
//# sourceMappingURL=getSlides.d.ts.map