export declare const genComponentValueVariable: (componentId: string, value: Record) => { [x: string]: { value: Record; }; }; export declare const genComponentFunctionVariable: (componentId: string, value: Record) => { [x: string]: { functions: Record; }; }; export declare const isVariableKey: (key: string) => boolean; export declare const getVariableKey: (str: string) => string | undefined;