import { PlaidLinkResponse } from "../../types/plaidLinkResponse"; export declare const getPlaidLink: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; } | undefined) => () => Promise; export declare const putPlaidAccounts: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; body?: Record | undefined; } | undefined) => Promise<{}>; export declare const getPlaidTransactions: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; } | undefined) => () => Promise<{}>;