export declare const exampleAbi = "[\n {\n constant: true,\n inputs: [\n {\n name: '_interfaceID',\n type: 'bytes4',\n },\n ],\n name: 'supportsInterface',\n outputs: [\n {\n name: '',\n type: 'bool',\n },\n ],\n payable: false,\n stateMutability: 'view',\n type: 'function',\n },\n {\n constant: true,\n inputs: [],\n name: 'cfoAddress',\n outputs: [\n {\n name: '',\n type: 'address',\n },\n ],\n payable: false,\n stateMutability: 'view',\n type: 'function',\n },\n {\n constant: true,\n inputs: [\n {\n name: '_tokenId',\n type: 'uint256',\n },\n {\n name: '_preferredTransport',\n type: 'string',\n },\n ],\n name: 'tokenMetadata',\n outputs: [\n {\n name: 'infoUrl',\n type: 'string',\n },\n ],\n payable: false,\n stateMutability: 'view',\n type: 'function',\n },\n])"; export declare const exampleBash = "#!/bin/bash\necho \"hello, world\"\nrm -rf node_modules\n"; export declare const exampleCSS = ".header {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n padding: 16px;\n}\n\n.buttons {\n display: flex;\n gap: 16px;\n}\n"; export declare const exampleHTML = "
\n

Hello, world

\n \n
\n"; export declare const exampleJs = "// Declaration\nclass Rectangle {\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n}\n\n// Expression; the class is anonymous but assigned to a variable\nconst Rectangle = class {\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n};\n\n// Expression; the class has its own name\nconst Rectangle = class Rectangle2 {\n constructor(height, width) {\n this.height = height;\n this.width = width;\n }\n};\n"; export declare const exampleTs = "export type TSupportLanguages =\n | 'bash'\n | 'css'\n | 'git'\n | 'html'\n | 'javascript'\n | 'json'\n | 'markup'\n | 'scss'\n | 'solidity'\n | 'typescript'\n\nexport interface ICodeProps {\n code: string\n isOpen?: boolean\n language: TSupportLanguages\n}\n"; //# sourceMappingURL=examples.d.ts.map