export declare enum CategoryStatus {
    NORMAL = "NORMAL",
    INACTIVE = "INACTIVE",
    DELETED = "DELETED"
}
export interface Category {
    /**
     * ShopCategory's unique identifier.
     */
    shop_category_id: number;
    /**
     * ShopCategory's status. Applicable values: NORMAL, INACTIVE, DELETED.
     */
    status: CategoryStatus;
    /**
     * ShopCategory's name.
     */
    name: string;
    /**
     * ShopCategory's sort weight.
     */
    sort_weight: number;
}
export default interface GetCategoryReponse {
    shop_categorys: Category[];
    /**
     * This is to indicate whether the shop categorys list is more than one page. If this value is true, you may want to continue to check next page to retrieve the rest of shop categorys.
     */
    more: boolean;
    /**
     * The identifier for an API request for error tracking
     */
    request_id: string;
}
