/**
 * Content provided form the file system.
 * @param {Object|string} definitions
 * @param {string|string[]} definitions.pattern
 * @param {string} definitions.base base directory where to find the files
 */
export class FileContentProvider extends ContentProvider {
    static get description(): string;
    definitions: any;
    get isPatternMatch(): any;
}
import { ContentProvider } from "./content-provider.mjs";
