// Interface to represent a response from the matrix API server
export interface APIResponse {
success: boolean;
results?: Array<unknown>;
}