import { components } from '@blockfrost/openapi';
import { AllMethodOptions, PaginationOptions } from '../../../types';
import { BlockFrostAPI } from '../../../index';
export declare function nutlinkAddress(this: BlockFrostAPI, address: string): Promise<components['schemas']['nutlink_address']>;
export declare function nutlinkAddressTickers(this: BlockFrostAPI, address: string, pagination?: PaginationOptions): Promise<components['schemas']['nutlink_address_tickers']>;
export declare function nutlinkAddressTickersAll(this: BlockFrostAPI, address: string, allMethodOptions?: AllMethodOptions): Promise<components['schemas']['nutlink_address_tickers']>;
export declare function nutlinkAddressTicker(this: BlockFrostAPI, address: string, ticker: string, pagination?: PaginationOptions): Promise<components['schemas']['nutlink_address_ticker']>;
export declare function nutlinkAddressTickerAll(this: BlockFrostAPI, address: string, ticker: string, allMethodOptions?: AllMethodOptions): Promise<components['schemas']['nutlink_address_ticker']>;
export declare function nutlinkTickers(this: BlockFrostAPI, ticker: string, pagination?: PaginationOptions): Promise<components['schemas']['nutlink_tickers_ticker']>;
export declare function nutlinkTickersAll(this: BlockFrostAPI, ticker: string, allMethodOptions?: AllMethodOptions): Promise<components['schemas']['nutlink_tickers_ticker']>;
