import type { MaybeRef } from 'vue'; import type { Plaid } from '../types/plaid'; export default function usePlaidLink(options: MaybeRef): { ready: import("vue").ComputedRef; error: import("vue").Ref; open: () => void | undefined; exit: (options?: Plaid.ExitOptions) => void | undefined; };