import { LinkFilter } from './LinkFilter'; import { DateLinkFilter } from './DateLinkFilter'; import { LinkType } from '../Enums'; export declare abstract class VisualizationLink { /** * The list of filters that will be applied to the target dashboard. */ filters?: (LinkFilter | DateLinkFilter)[]; /** * The title of the link. */ title?: string; /** * The type of the link. */ type: LinkType; }