/**
 * @oas [post] /customers/password-reset
 * operationId: PostCustomersResetPassword
 * summary: Reset Password
 * description: "Resets a Customer's password using a password token created by a previous /password-token request."
 * requestBody:
 *   content:
 *     application/json:
 *       schema:
 *         $ref: "#/components/schemas/StorePostCustomersResetPasswordReq"
 * x-codeSamples:
 *   - lang: JavaScript
 *     label: JS Client
 *     source: |
 *       import Medusa from "@medusajs/medusa-js"
 *       const medusa = new Medusa({ baseUrl: MEDUSA_BACKEND_URL, maxRetries: 3 })
 *       medusa.customers.resetPassword({
 *         email: 'user@example.com',
 *         password: 'supersecret',
 *         token: 'supersecrettoken'
 *       })
 *       .then(({ customer }) => {
 *         console.log(customer.id);
 *       });
 *   - lang: Shell
 *     label: cURL
 *     source: |
 *       curl --location --request POST 'https://medusa-url.com/store/customers/password-reset' \
 *       --header 'Content-Type: application/json' \
 *       --data-raw '{
 *           "email": "user@example.com",
 *           "password": "supersecret",
 *           "token": "supersecrettoken"
 *       }'
 * tags:
 *   - Customer
 * responses:
 *   200:
 *     description: OK
 *     content:
 *       application/json:
 *         schema:
 *           $ref: "#/components/schemas/StoreCustomersRes"
 *   "400":
 *     $ref: "#/components/responses/400_error"
 *   "401":
 *     $ref: "#/components/responses/unauthorized"
 *   "404":
 *     $ref: "#/components/responses/not_found_error"
 *   "409":
 *     $ref: "#/components/responses/invalid_state_error"
 *   "422":
 *     $ref: "#/components/responses/invalid_request_error"
 *   "500":
 *     $ref: "#/components/responses/500_error"
 */
declare const _default: (req: any, res: any) => Promise<void>;
export default _default;
/**
 * @schema StorePostCustomersResetPasswordReq
 * type: object
 * required:
 *   - email
 *   - password
 *   - token
 * properties:
 *   email:
 *     description: "The email of the customer."
 *     type: string
 *     format: email
 *   password:
 *     description: "The Customer's password."
 *     type: string
 *     format: password
 *   token:
 *     description: "The reset password token"
 *     type: string
 */
export declare class StorePostCustomersResetPasswordReq {
    email: string;
    token: string;
    password: string;
}
