import { LcdpPlatformKey } from '../../interfaces/types'; export interface ActionNodeBeforeParams { platformType: LcdpPlatformKey; isMobile?: boolean; temSameActionObject?: any; dslSameActionObject?: any; isCustomFunc?: boolean; } export declare const MERGE_ACTION: { setVisible: string; sysSetVisible: string; setDisable: string; sysSetDisable: string; setRequired: string; sysSetRequired: string; sysSetValue: string; setValue: string; setMobileValue: string; }; export declare const dealTwoSameAction: (params: { actionNode: any; compId: string; oldValueKey: string; dslSameActionObject: any; temSameActionObject: any; isCustomFunc?: boolean; }) => void; declare const parseActionNodeBefore: (actionNode: any, compId: string, context: ActionNodeBeforeParams) => void; export default parseActionNodeBefore;