/**
 * Farcaster Hub REST API
 * Perform basic queries of Farcaster state via the REST API of a Farcaster hub. See the [Farcaster docs](https://www.thehubble.xyz/docs/httpapi/httpapi.html) for more details. Some client libraries:   - [TypeScript](https://www.npmjs.com/package/@standard-crypto/farcaster-js-hub-rest)
 *
 * The version of the OpenAPI document: 1.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { Configuration } from '../configuration.js';
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
import { RequestArgs, BaseAPI } from '../base.js';
import { ListVerificationsByFid200Response } from '../models/index.js';
/**
 * VerificationsApi - axios parameter creator
 * @export
 */
export declare const VerificationsApiAxiosParamCreator: (configuration?: Configuration) => {
    /**
     *
     * @summary Get a list of verifications provided by an FID
     * @param {number} fid The FID being requested
     * @param {string} [address] The optional ETH address to filter by
     * @param {number} [pageSize] Maximum number of messages to return in a single response
     * @param {boolean} [reverse] Reverse the sort order, returning latest messages first
     * @param {string} [pageToken] The page token returned by the previous query, to fetch the next page. If this parameter is empty, fetch the first page
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    listVerificationsByFid: (fid: number, address?: string, pageSize?: number, reverse?: boolean, pageToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};
/**
 * VerificationsApi - functional programming interface
 * @export
 */
export declare const VerificationsApiFp: (configuration?: Configuration) => {
    /**
     *
     * @summary Get a list of verifications provided by an FID
     * @param {number} fid The FID being requested
     * @param {string} [address] The optional ETH address to filter by
     * @param {number} [pageSize] Maximum number of messages to return in a single response
     * @param {boolean} [reverse] Reverse the sort order, returning latest messages first
     * @param {string} [pageToken] The page token returned by the previous query, to fetch the next page. If this parameter is empty, fetch the first page
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    listVerificationsByFid(fid: number, address?: string, pageSize?: number, reverse?: boolean, pageToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListVerificationsByFid200Response>>;
};
/**
 * VerificationsApi - factory interface
 * @export
 */
export declare const VerificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
    /**
     *
     * @summary Get a list of verifications provided by an FID
     * @param {VerificationsApiListVerificationsByFidRequest} requestParameters Request parameters.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    listVerificationsByFid(requestParameters: VerificationsApiListVerificationsByFidRequest, options?: AxiosRequestConfig): AxiosPromise<ListVerificationsByFid200Response>;
};
/**
 * Request parameters for listVerificationsByFid operation in VerificationsApi.
 * @export
 * @interface VerificationsApiListVerificationsByFidRequest
 */
export interface VerificationsApiListVerificationsByFidRequest {
    /**
     * The FID being requested
     * @type {number}
     * @memberof VerificationsApiListVerificationsByFid
     */
    readonly fid: number;
    /**
     * The optional ETH address to filter by
     * @type {string}
     * @memberof VerificationsApiListVerificationsByFid
     */
    readonly address?: string;
    /**
     * Maximum number of messages to return in a single response
     * @type {number}
     * @memberof VerificationsApiListVerificationsByFid
     */
    readonly pageSize?: number;
    /**
     * Reverse the sort order, returning latest messages first
     * @type {boolean}
     * @memberof VerificationsApiListVerificationsByFid
     */
    readonly reverse?: boolean;
    /**
     * The page token returned by the previous query, to fetch the next page. If this parameter is empty, fetch the first page
     * @type {string}
     * @memberof VerificationsApiListVerificationsByFid
     */
    readonly pageToken?: string;
}
/**
 * VerificationsApi - object-oriented interface
 * @export
 * @class VerificationsApi
 * @extends {BaseAPI}
 */
export declare class VerificationsApi extends BaseAPI {
    /**
     *
     * @summary Get a list of verifications provided by an FID
     * @param {VerificationsApiListVerificationsByFidRequest} requestParameters Request parameters.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof VerificationsApi
     */
    listVerificationsByFid(requestParameters: VerificationsApiListVerificationsByFidRequest, options?: AxiosRequestConfig): Promise<globalAxios.AxiosResponse<ListVerificationsByFid200Response, any>>;
}
