import { Context as NuxtContext } from '@nuxt/types'; import { ApiClientMethod } from '../../types'; interface CreateProxiedApiParams { givenApi: Record; client: any; tag: string; } export declare const createProxiedApi: ({ givenApi, client, tag }: CreateProxiedApiParams) => Record; export declare const getCookies: (context: NuxtContext) => string; export declare const getIntegrationConfig: (context: NuxtContext, configuration: any) => any; export {};