import type { PostUserPersonalId } from './types/index.js'; /** * Method responsible for creating new personal ids. * * @param userId - User's id to get the personal ids from. * @param data - Object containing personal id data. * @param config - Custom configurations to send to the client instance (axios). X-SUMMER-RequestId * header is required. * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const postUserPersonalId: PostUserPersonalId; export default postUserPersonalId;