import { LinkFilterType } from '../Enums'; export declare class LinkFilter { constructor(); constructor(name: string, targetFilterId: string, value: string); constructor(name: string, targetFilterId: string, value: string, linkFilterType: LinkFilterType); /** * The name of the filter. */ name?: string; /** * The filter ID of the target dashboard that will be used to map the value to the target dashboard's filter. */ targetFilterId?: string; /** * The type of the filter. */ type: LinkFilterType; /** * The value of the filter. */ value?: string; }