export default interface CustomMaps { 'GET /api/twin/v1/users/me': { request: null; response: { accountId: number; userId: string; username: string; role: 'root' | 'custom' }; }; 'POST /api/fs/v1/static/{path}': { request: { params: { path: string; }; body: FormData; }; response: void; }; 'PATCH /api/twin/v1/users/me/state': { request: { body: { code: string; }; }; response: void; }; }