import { Message, EventType } from '../types'; export declare const CREATE_MESSAGE: import("graphql").DocumentNode; export declare type CreateMessageVariables = { content: string; username: string; roomId: string; access: string; identityId?: string; }; export declare type CreateMessageResult = { message: Message; }; export declare const CREATE_EVENT: import("graphql").DocumentNode; export declare type CreateEventVariables = { eventType: EventType; username: string; roomId: string; access: string; identityId?: string; }; export declare type CreateEventResult = { message: Message; };