import * as Schema from "effect/Schema";
declare const PluginPrivilege_base: Schema.Class<PluginPrivilege, {
    name: Schema.optional<typeof Schema.String>;
    description: Schema.optional<typeof Schema.String>;
    value: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
        nullable: true;
    }>;
}, Schema.Struct.Encoded<{
    name: Schema.optional<typeof Schema.String>;
    description: Schema.optional<typeof Schema.String>;
    value: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
        nullable: true;
    }>;
}>, never, {
    readonly description?: string | undefined;
} & {
    readonly value?: readonly string[] | undefined;
} & {
    readonly name?: string | undefined;
}, {}, {}>;
export declare class PluginPrivilege extends PluginPrivilege_base {
}
export {};
//# sourceMappingURL=PluginPrivilege.generated.d.ts.map