import type React from 'react'; import type { BasePluginDefinition } from '#src/schema/index.js'; import type { PluginMetadataWithPaths } from '../metadata/types.js'; export interface WebConfigProps { definition: BasePluginDefinition | undefined; metadata: PluginMetadataWithPaths; onSave: () => void; } /** * Spec for adding config component for plugin * * Keyed by plugin key, value is the config component. */ export declare const webConfigSpec: import("./types.js").PluginSpec<{ components: import("@baseplate-dev/utils").MapContainer>; }, import("@baseplate-dev/utils").FieldMapValues<{ components: import("@baseplate-dev/utils").MapContainer>; }>>; //# sourceMappingURL=web-config-spec.d.ts.map