/**
 * @license
 * Copyright (c) 2021 QBCart Inc. All rights reserved.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source repo.
 */
/**
 * Hook for showing the remove item modal.
 * @param {string} id - Id of item that remove item modal should display.
 * @return A function for showing the remove item modal.
 */
declare const useShowRemoveItemModal: () => (id: string) => Promise<boolean>;
export default useShowRemoveItemModal;
