import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import Long from "long"; import { Details } from "../../object/v2/object.js"; export declare const protobufPackage = "zitadel.feature.v2"; export interface SetUserFeatureRequest { userId: string; } export interface SetUserFeaturesResponse { details: Details | undefined; } export interface ResetUserFeaturesRequest { userId: string; } export interface ResetUserFeaturesResponse { details: Details | undefined; } export interface GetUserFeaturesRequest { userId: string; inheritance: boolean; } export interface GetUserFeaturesResponse { details: Details | undefined; } export declare const SetUserFeatureRequest: MessageFns; export declare const SetUserFeaturesResponse: MessageFns; export declare const ResetUserFeaturesRequest: MessageFns; export declare const ResetUserFeaturesResponse: MessageFns; export declare const GetUserFeaturesRequest: MessageFns; export declare const GetUserFeaturesResponse: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export interface MessageFns { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create(base?: DeepPartial): T; fromPartial(object: DeepPartial): T; } export {};