import { FactorSetResponse } from "../interfaces/response/FactorSetResponse"; /** * Retrieves factor sets by making a GET request to the factor set API endpoint. * * @export * @return {Promise} A promise that resolves to the FactorSetResponse returned by the API * @throws {Error} May throw an error if the API request fails * * @example * const factorSets = await get(); */ export declare function get(): Promise;