/** * A template literal tag that does nothing. Useful for syntax highlighting of GLSL code. * * @example * ```js * const vertexShader = glsl` * void main() {} * ` * ``` * @category Template Literals */ export declare const glsl: (strings: any, ...rest: any[]) => string; /** * A template literal tag that does nothing. Useful for syntax highlighting of CSS code. * * @example * ```js * const vertexShader = css` * .my-class { * color: red; * } * ` * ``` * @category Template Literals */ export declare const css: (strings: any, ...rest: any[]) => string; /** * A template literal tag that does nothing. Useful for syntax highlighting of HTML code. * * @example * ```js * const vertexShader = html` *
Some text
*