export interface TitleStyleConfig { color?: string; backgroundColor?: string; } export interface PageStyleConfig { backgroundImage?: string; backgroundSize?: string; backgroundRepeat?: string; backgroundPosition?: string; backgroundColor?: string; backgroundAttachment?: string; backgroundClip?: string; } export interface GlobalConfig { isHide?: boolean; title?: string; titleStyle?: TitleStyleConfig; pageStyle?: PageStyleConfig; } declare const utils: { getParamFromURL: (url: any, param?: string) => string; transform: (data: any) => { hierarchy: { root: string; structure: { root_1: any[]; }; }; data: { root_1: { fields: {}; type: string; tag: string; id: number; }; }; global: any; }; setGlobalConfig: (params: any, propsMode: any) => GlobalConfig; monitorFunc: (emit: any, params: any) => void; }; export default utils;