> ## Documentation Index
> Fetch the complete documentation index at: https://intunedhq.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# TextContentItem

Text content item for content-based extraction.

```typescript theme={null}
export interface TextContentItem {
  type: "text";
  data: string;
}
```

## Properties

<ParamField path="type" type="'text'">
  The type of the content item, which is always "text".
</ParamField>

<ParamField path="data" type="string">
  The text data to extract from.
</ParamField>
