export default interface IRedirectResponse { redirectUrl?: string; redirectMethod?: 'GET' | 'POST'; redirectData?: Object; redirect(): Promise; }