import type { Config, CorePlugins } from '../types'; import { defaultConfig, setup as internalSetup } from './setup'; export type { GraphSchemaValidators } from '../core/graph'; export type { App } from './setup'; /** * @internal */ export declare function setup(root: string, config: Config): Promise; /** * @internal */ export { defaultConfig, internalSetup }; /** * @internal */ export declare const corePlugins: CorePlugins; /** * @internal */ export declare const noRepoPlugins: CorePlugins;