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