import { ResolvableType } from '../jsonTypeResolution/TypeResolver'; interface MatrixAssetShape { matrixAssetId: string; matrixIdentifier: string; matrixDomain?: string; } export declare const MatrixAssetType: ResolvableType<"MatrixAsset", MatrixAssetShape>; export type MatrixAssetType = typeof MatrixAssetType; interface MatrixAssetLinkShape extends MatrixAssetShape { text?: string; target: '_blank' | '_parent' | '_self' | '_top'; } export declare const MatrixAssetLinkType: ResolvableType<"MatrixAssetLink", MatrixAssetLinkShape>; export type MatrixAssetLinkType = typeof MatrixAssetLinkType; export {};