import { type EntityType, type SmartLinkResponse } from '@atlaskit/linking-types'; import { type LinkProvider } from '../common'; export declare const extractEntity: (response?: SmartLinkResponse) => EntityType | undefined; export declare const isEntityPresent: (response?: SmartLinkResponse) => boolean; export declare const extractEntityEmbedUrl: (response?: SmartLinkResponse) => string | undefined; export declare const extractEntityProvider: (response?: SmartLinkResponse) => LinkProvider | undefined; export declare const extractEntityIcon: (response?: SmartLinkResponse) => { url: string | undefined; label: string | undefined; };