/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { LoadContext, Plugin, OptionValidationContext, ValidationResult } from '@docusaurus/types'; import { PluginOptions, LoadedContent, PagesContentPaths } from './types'; export declare function getContentPathList(contentPaths: PagesContentPaths): string[]; declare type ContentPluginOptions = PluginOptions & { lightCourseComponent: string; }; export default function pluginContentPages(context: LoadContext, opts: ContentPluginOptions): Plugin; export declare function validateOptions({ validate, options, }: OptionValidationContext): ValidationResult; export {}; //# sourceMappingURL=index.d.ts.map