/**
 * @oas [post] /store
 * operationId: "PostStore"
 * summary: "Update Store Details"
 * description: "Updates the Store details"
 * x-authenticated: true
 * requestBody:
 *   content:
 *     application/json:
 *       schema:
 *         $ref: "#/components/schemas/AdminPostStoreReq"
 * x-codeSamples:
 *   - lang: JavaScript
 *     label: JS Client
 *     source: |
 *       import Medusa from "@medusajs/medusa-js"
 *       const medusa = new Medusa({ baseUrl: MEDUSA_BACKEND_URL, maxRetries: 3 })
 *       // must be previously logged in or use api token
 *       medusa.admin.store.update({
 *         name: 'Medusa Store'
 *       })
 *       .then(({ store }) => {
 *         console.log(store.id);
 *       });
 *   - lang: Shell
 *     label: cURL
 *     source: |
 *       curl --location --request POST 'https://medusa-url.com/admin/store' \
 *       --header 'Authorization: Bearer {api_token}' \
 *       --header 'Content-Type: application/json' \
 *       --data-raw '{
 *           "name": "Medusa Store"
 *       }'
 * security:
 *   - api_token: []
 *   - cookie_auth: []
 * tags:
 *   - Store
 * responses:
 *   200:
 *     description: OK
 *     content:
 *       application/json:
 *         schema:
 *           $ref: "#/components/schemas/AdminStoresRes"
 *   "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 AdminPostStoreReq
 * type: object
 * properties:
 *   name:
 *     description: "The name of the Store"
 *     type: string
 *   swap_link_template:
 *     description: "A template for Swap links - use `{{cart_id}}` to insert the Swap Cart id"
 *     type: string
 *   payment_link_template:
 *     description: "A template for payment links links - use `{{cart_id}}` to insert the Cart id"
 *     type: string
 *   invite_link_template:
 *     description: "A template for invite links - use `{{invite_token}}` to insert the invite token"
 *     type: string
 *   default_currency_code:
 *     description: "The default currency code for the Store."
 *     type: string
 *     externalDocs:
 *       url: https://en.wikipedia.org/wiki/ISO_4217#Active_codes
 *       description: See a list of codes.
 *   currencies:
 *     description: "Array of currencies in 2 character ISO code format."
 *     type: array
 *     items:
 *       type: string
 *   metadata:
 *     description: "An optional set of key-value pairs with additional information."
 *     type: object
 */
export declare class AdminPostStoreReq {
    name?: string;
    swap_link_template?: string;
    payment_link_template?: string;
    invite_link_template?: string;
    default_currency_code?: string;
    currencies?: string[];
    metadata?: Record<string, unknown>;
}
