import type { ConnectWebviewsCreateBody, SeamHttpApiError } from '@seamapi/http/connect'; import type { ConnectWebview } from '@seamapi/types/connect'; import { type UseMutationResult } from '@tanstack/react-query'; export interface UseCreateConnectWebviewParams { willNavigateToWebview?: boolean; } export type UseCreateConnectWebviewData = ConnectWebview; export type UseCreateConnectWebviewMutationVariables = ConnectWebviewsCreateBody; export declare function useCreateConnectWebview({ willNavigateToWebview, }?: UseCreateConnectWebviewParams): UseMutationResult;