import { BehaviorAction } from '../types'; interface LinkActionValue { type?: 'internal' | 'external'; target?: string; url?: string; } interface LinkActionOptions { url?: string; responseFormatter: (dataSource: any[]) => any[]; } export declare const linkBehaviorAction: BehaviorAction; export {};