import { IdentityProviderUserWithRoles, InternalApiInput, InternalApiResult } from "@kottster/common"; import { Action } from "../models/action.model"; /** * Log out all sessions of a current user */ export declare class LogOutAllSessions extends Action { execute({ password }: InternalApiInput<'logOutAllSessions'>, user: IdentityProviderUserWithRoles): Promise>; }