import { UserAuthentication } from './user.authentication';
import { Authority } from './authority';
export declare class OAuth2AuthenticationDto {
    userAuthentication: UserAuthentication | null;
    authorities: Authority[] | null;
    name: string | null;
    orgId: number | null;
    orgCode: string | null;
    orgName: string | null;
    orgType: string | null;
    orgForm: string | null;
    orgPath: string | null;
    orgIsApproveVo: boolean | null;
    sapId: number | null;
    voAuthentication: string | null;
}
