import type { ExecutionContext } from '@nestjs/common';
import type { BaseMemberEntity } from '../models/base-member.entity';
export declare const getPayloadFromContext: (context: ExecutionContext) => Pick<BaseMemberEntity, "id" | "account"> | undefined;
