import type { TGetFromServerArgs } from "@web3r/flowerkit/net"; import type { TOptionType } from "../config/types/index.d.mts"; type TSelectOptionsResponse = { isSuccess?: boolean; data?: { options?: TOptionType[]; }; }; /** * Fetches options from a remote URL using a standardized response format. * Expects the response to contain `data.options` when successful. * @returns {Promise} */ export declare const getSelectOptionsFromUrl: (requestCfg?: TGetFromServerArgs) => Promise; export {};