import type { MedipassRequestOpts, PaginatedQuery } from '../types'; export declare const pathHealthFundVendors: (healthFundId: string) => string; export declare const pathHealthFundVendor: (healthFundId: string, vendorId: string) => string; export declare const getHealthFundVendor: (healthFundId: string, vendorId: string, query?: { includeDeleted: boolean; } | null | undefined, opts?: MedipassRequestOpts) => Promise>; export declare const getHealthFundVendors: (healthFundId: string, query?: (PaginatedQuery & { searchText?: string; }) | null | undefined, opts?: MedipassRequestOpts) => Promise>;