/** 認証のレスポンス */
export interface AuthenticationResponse {
    RedirectURL: string;
}
/** タイプガード */
export declare const isAuthenticationResponse: (x: unknown) => x is AuthenticationResponse;
