export declare const EXAMPLE_DIRECTIVE = "\n\"\"\"\n@exampleID directive specifies an example value for a ID field.\nThis example value is used in the fake data.\nID value will be unique between all ID fake data.\n\"\"\"\ndirective @exampleID(\n \"\"\"\n The value of the ID field.\n @exampleID(value: \"id\")\n \"\"\"\n value: ID!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleString directive specifies an example value for a String field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleString(\n \"\"\"\n The value of the String field.\n @exampleString(value: \"example\")\n \"\"\"\n value: String!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleInt directive specifies an example value for a Int field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleInt(\n \"\"\"\n The value of the Int field.\n @exampleInt(value: 1)\n \"\"\"\n value: Int!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleFloat directive specifies an example value for a Float field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleFloat(\n \"\"\"\n The value of the Float field.\n @exampleFloat(value: 1.0)\n \"\"\"\n value: Float!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleBoolean directive specifies an example value for a Boolean field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleBoolean(\n \"\"\"\n The value of the Boolean field.\n @exampleBoolean(value: true)\n \"\"\"\n value: Boolean!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\n\"\"\"\n@exampleArrayID directive specifies an example value for a array of ID field.\nThis example value is used in the fake data.\nID value will be unique between all ID fake data.\n\"\"\"\ndirective @exampleArrayID(\n \"\"\"\n The value of the ID field.\n @exampleArrayID(value: [\"id1\", \"id2\"])\n \"\"\"\n values: [ID!]!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleArrayString directive specifies an example value for a array of String field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleArrayString(\n \"\"\"\n The value of the String field.\n @exampleArrayString(value: [\"example1\", \"example2\"])\n \"\"\"\n values: [String!]!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleArrayInt directive specifies an example value for a array of Int field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleArrayInt(\n \"\"\"\n The value of the Int field.\n @exampleArrayInt(value: [1, 2])\n \"\"\"\n values: [Int!]!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleArrayFloat directive specifies an example value for a array of Float field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleArrayFloat(\n \"\"\"\n The value of the Float field.\n @exampleArrayFloat(value: [1.0, 2.0])\n \"\"\"\n values: [Float!]!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleArrayBoolean directive specifies an example value for a array of Boolean field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleArrayBoolean(\n \"\"\"\n The value of the Boolean field.\n @exampleArrayBoolean(value: [true, false])\n \"\"\"\n values: [Boolean!]!\n) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION\n\"\"\"\n@exampleScalarString directive specifies an example value for a scalar field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleScalarString(\n \"\"\"\n The value of the scalar field.\n scalar CustomString @exampleScalar(value: \"example\")\n \"\"\"\n value: String!\n) on SCALAR\n\"\"\"\n@exampleScalarInt directive specifies an example value for a scalar field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleScalarInt(\n \"\"\"\n The value of the scalar field.\n scalar CustomValue @exampleScalar(value: 1)\n \"\"\"\n value: Int!\n) on SCALAR\n\"\"\"\n@exampleScalarFloat directive specifies an example value for a scalar field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleScalarFloat(\n \"\"\"\n The value of the scalar field.\n scalar CustomValue @exampleScalar(value: 1.0)\n \"\"\"\n value: Float!\n) on SCALAR\n\"\"\"\n@exampleScalarBoolean directive specifies an example value for a scalar field.\nThis example value is used in the fake data.\n\"\"\"\ndirective @exampleScalarBoolean(\n \"\"\"\n The value of the scalar field.\n scalar CustomValue @exampleScalar(value: true)\n \"\"\"\n value: Boolean!\n) on SCALAR\n\"\"\"\n@error directive specifies a field as an error response field.\nIt allows setting an error response and specifying the field name.\n\"\"\"\ndirective @error on FIELD_DEFINITION\n"; export declare const extendSchema: (schema: string) => string; //# sourceMappingURL=extend-schema.d.ts.map