import { SignUpSubmitPasswordResult } from "../result/SignUpSubmitPasswordResult.js"; import { SignUpState } from "./SignUpState.js"; import { SignUpPasswordRequiredStateParameters } from "./SignUpStateParameters.js"; export declare class SignUpPasswordRequiredState extends SignUpState { /** * The type of the state. */ stateType: string; /** * Submits a password for sign-up. * @param {string} password - The password to submit. * @returns {Promise} The result of the operation. */ submitPassword(password: string): Promise; } //# sourceMappingURL=SignUpPasswordRequiredState.d.ts.map