import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { JsonObject, Message } from "@bufbuild/protobuf"; /** * Describes the file rpc/proto/v1/auth.proto. */ export declare const file_rpc_proto_v1_auth: GenFile; /** * @generated from message rpc.proto.v1.AuthenticateRequest */ export type AuthenticateRequest = Message<"rpc.proto.v1.AuthenticateRequest"> & { /** * @generated from field: string token = 1; */ token: string; /** * @generated from field: google.protobuf.Struct optional_data = 10; */ optionalData?: JsonObject; }; /** * Describes the message rpc.proto.v1.AuthenticateRequest. * Use `create(AuthenticateRequestSchema)` to create a new message. */ export declare const AuthenticateRequestSchema: GenMessage; /** * @generated from message rpc.proto.v1.AuthenticateResponse */ export type AuthenticateResponse = Message<"rpc.proto.v1.AuthenticateResponse"> & { /** * @generated from field: string uuid = 1; */ uuid: string; /** * @generated from field: string app_id = 2; */ appId: string; /** * @generated from field: string issuer = 3; */ issuer: string; /** * @generated from field: google.protobuf.Struct optional_data = 10; */ optionalData?: JsonObject; }; /** * Describes the message rpc.proto.v1.AuthenticateResponse. * Use `create(AuthenticateResponseSchema)` to create a new message. */ export declare const AuthenticateResponseSchema: GenMessage;