import { UserData } from '../../../entities';
import { AuthenticationPayloadDtoV1 } from '../generated';
export declare class AuthenticationDataDtoV1 {
    user: UserData;
    payload: AuthenticationPayloadDtoV1;
}
export declare class AuthenticationResponseDtoV1 {
    status: string;
    data: AuthenticationDataDtoV1;
}
