type UnknownType = Record; type CustomTrigger = { [key: string]: { componentProps: UnknownType; data: UnknownType; }; }; type ChatConfigFields = {}; type CreatedAtUpdatedAt = { created_at: string; updated_at: string; }; type CommandResponse = Partial & { args?: string; description?: string; name?: string; set?: string; }; type ChatConfigWithInfo = ChatConfigFields & CreatedAtUpdatedAt & { commands?: CommandResponse[]; }; export { ChatConfigFields, ChatConfigWithInfo, CommandResponse, CreatedAtUpdatedAt, CustomTrigger, UnknownType }; //# sourceMappingURL=index.d.ts.map