export declare const addVariableCodeTemplate = "variable:\n key: # Unique identifier for the variable.\n format: # Format type, e.g., image, string, array:string.\n title: # Title of this input field.\n description: # Introduction of what should be input.\n"; export declare const addVariableCodeHint = "# Variables are inputs that can manually trigger the pipeline and be used in different parts of the pipeline\n\nvariable:\n key: # Unique identifier for the variable.\n format: # Format type, e.g., image, string, array:string.\n title: # Title of this input field.\n description: # Introduction of what should be input.\n"; export declare const addOutputCodeTemplate = "output:\n key: # Unique identifier for the output.\n title: # Title of this output field.\n value: # Can be a value or use ${} to reference data.\n"; export declare const addOutputCodeHint = "# Output is the result produced by components, and you can name these output titles to easily distinguish between them.\n\noutput:\n key: # Unique identifier for the output.\n title: # Title of this output field.\n value: # Can be a value or use ${} to reference data.\n"; //# sourceMappingURL=codeTemplate.d.ts.map