import { GatsbyNode } from "gatsby"; import { IPluginInfoOptions } from "./types"; interface ITestPluginOptionsSchemaReturnType { errors: Array; warnings: Array; isValid: boolean; hasWarnings: boolean; } export declare function testPluginOptionsSchema(pluginSchemaFunction: Exclude, pluginOptions: IPluginInfoOptions): Promise; export {};