import { DeviceService } from '../../../devices/deviceService';
import { IdentityTestCase } from './testCases';
export declare class ChangePwdTestSuite {
    params: (boolean | IdentityTestCase)[][];
    getParameterForTestCase(testCase: number, deviceService: DeviceService): Promise<{
        password: string;
        userId: string;
        testCaseCode: IdentityTestCase.CHANGEPASSWORD_SUCCESS;
    } | {
        password: string;
        userId: string;
        testCaseCode: IdentityTestCase.CHANGEPASSWORD_UNKNOWN_ERROR;
    } | {
        password: string;
        userId: string;
        testCaseCode: IdentityTestCase.CHANGEPASSWORD_USER_NOT_FOUND;
    } | undefined>;
}
