declare class SignOutInput {
    userId: string;
}
declare class SignOutOutput {
    loggedOut: boolean;
}
/**
 * Sign out user
 * This method only for add remote middlewares (e.g.: remove auth tokens from authentication microservice)
 */
declare const signOut: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, SignOutInput, Record<string, any>, {
    loggedOut: boolean;
}>;
export { SignOutInput, SignOutOutput, signOut };
