import type { CardClient } from '@atlaskit/link-provider'; import { type InvokeRequest, type InvokeResponse } from '@atlaskit/linking-types/smart-link-actions'; /** * useSmartLinkClientExtension * * This hook extends the usage of @atlaskit/link-provider CardClient * for smart links. * * @param cardClient */ export declare const useSmartLinkClientExtension: (cardClient: CardClient) => { invoke: (data: InvokeRequest) => Promise; };