/** * Data-layer configuration for Studio. * * Passed via the top-level `dataOptions` property of {@link AgStudioProperties}. */ export interface AgDataOptions { /** * Maximum number of rows included in a CSV/Excel export. * * Set to `-1` to remove the limit entirely. * * @default 1000 */ maxExportRows?: number; } export declare const DEFAULT_MAX_EXPORT_ROWS = 1000;