import { ShadrizProcessor } from "./types"; type ClassType = new (...args: any[]) => T; interface ShadrizAddOn { Processor: ClassType; name: string; description: string; } interface ClassMap { [key: string]: ShadrizAddOn; } export declare const ADD_ON_REGISTRY: ClassMap; export declare function getAddOnHelpText(): string; export {};