# ExportMethods

Export methods returned from injectGridExport.

Uses lazy discovery - the grid is found on first method call, not during initialization.
This ensures it works with lazy-rendered tabs, conditional rendering, etc.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `exportToCsv` | <code>(filename: string, params: Partial&lt;<a href="/grid/plugins/export/interfaces/exportparams/">ExportParams</a>&gt;) =&gt; void</code> | Export grid data to CSV file. |
| `exportToExcel` | <code>(filename: string, params: Partial&lt;<a href="/grid/plugins/export/interfaces/exportparams/">ExportParams</a>&gt;) =&gt; void</code> | Export grid data to Excel file (XML Spreadsheet format). |
| `exportToJson` | <code>(filename: string, params: Partial&lt;<a href="/grid/plugins/export/interfaces/exportparams/">ExportParams</a>&gt;) =&gt; void</code> | Export grid data to JSON file. |
| `isExporting` | <code>() =&gt; boolean</code> | Check if an export is currently in progress. |
| `getLastExport` | <code>() =&gt; object &#124; unknown</code> | Get information about the last export. |
| `isReady` | <code>Signal&lt;boolean&gt;</code> | Signal indicating if grid is ready. The grid is discovered lazily, so this updates when first method call succeeds. |
