import type { SignUpAttempt } from '../resources/SignUpAttempt'; import { AbstractAPI } from './AbstractApi'; type UpdateSignUpParams = { signUpAttemptId: string; externalId?: string | null; customAction?: boolean | null; }; export declare class SignUpAPI extends AbstractAPI { get(signUpAttemptId: string): Promise; update(params: UpdateSignUpParams): Promise; } export {}; //# sourceMappingURL=SignUpApi.d.ts.map