export declare const unauthorizedFlow: () => Promise; /** * Test middleware that throws an unexpected error * @param ctx * @param next */ export declare const badFlow: (ctx: any, next: any) => Promise; export declare const setSomethingStateFlow: (ctx: any, next: any) => Promise; export declare const loginForTest: (ctx: any, next: any) => Promise; export declare const setSomethingSessionFlow: (ctx: any, next: any) => Promise; export declare const passFlow: (ctx: any, next: any) => Promise;