import { Static } from '@sinclair/typebox'; import { getAccountsResponseSchema, postAccountResponseSchema, deleteAccountResponseSchema, deleteWebhookResponseSchema, getAllChatAttendeesResponseSchema, getAttendeeResponseSchema, getChatAttendeesResponseSchema, getChatMessagesResponseSchema, getChatResponseSchema, getChatsResponseSchema, getMessageAttachementResponseSchema, getMessageResponseSchema, getMessagesResponseSchema, getWebhooksResponseSchema, postChatMessageResponseSchema, postHostedAuthLinkResponseSchema, postWebhookResponseSchema, getAccountSourceStatusResponseSchema, postQrCodeBasedAccountSchema } from '../schemas/index.js'; export type UntypedYet = any; export type Accounts = Static; export type AccountSourceStatus = Static; export type PostAccount = Static; export type PostQrCodeBasedAccount = Static; export type DeleteAccount = Static; export type HostedAuthLink = Static; export type GetChats = Static; export type Chat = Static; export type ChatMessages = Static; export type ChatAttendees = Static; export type PostChatMessage = Static; export type Messages = Static; export type Message = Static; export type Attendees = Static; export type Attendee = Static; export type MessageAttachement = Static; export type Webhooks = Static; export type PostWebhook = Static; export type DeleteWebhook = Static;