import { FromSchema } from 'json-schema-to-ts';
export declare const addonParameterSchema: {
    readonly $id: "#/components/schemas/addonParameterSchema";
    readonly type: "object";
    readonly required: readonly ["name", "displayName", "type", "required", "sensitive"];
    readonly properties: {
        readonly name: {
            readonly type: "string";
        };
        readonly displayName: {
            readonly type: "string";
        };
        readonly type: {
            readonly type: "string";
        };
        readonly description: {
            readonly type: "string";
        };
        readonly placeholder: {
            readonly type: "string";
        };
        readonly required: {
            readonly type: "boolean";
        };
        readonly sensitive: {
            readonly type: "boolean";
        };
    };
    readonly components: {};
};
export declare type AddonParameterSchema = FromSchema<typeof addonParameterSchema>;
