import { ApolloQueryResult } from '@apollo/client'; import { UserPluginsAndIntegrationsQuery } from './types/graphql'; export type FetchUserPluginsResult = ApolloQueryResult['data']['currentUser']; declare function fetchUserPlugins(authToken: string, apiUrl: string): Promise; export default fetchUserPlugins;