export interface AuthLoginBody { email: string; password: string; } export interface AuthLogoutBody { token: string; } export declare const AuthController: import("@becomes/purple-cheetah/types").Controller;