/** * Created by S.C. on 2024/10/10 */ import React from 'react'; interface VarTemplateProps { style?: Object; tags: any[]; showCountTip?: boolean; readOnly?: boolean; [k: string]: any; } declare const VarTemplate: (props: VarTemplateProps) => React.JSX.Element; export default VarTemplate;