import { type Theme } from 'ag-grid-community'; /** * Porsche Design System theme for AG Grid v35 * * This theme extends the Quartz theme with Porsche Design System styling. * It supports both light and dark modes via CSS `color-scheme`. * * Features: * - Custom Porsche Design System colors * - PorscheNext font family * - Custom checkbox, toggle, and input styling * - Optimized spacing and sizing * - Full dark mode support * * Usage: * ```typescript * import { pdsTheme } from '@porsche-design-system/utilities/ag-grid'; * * const gridOptions = { * theme: pdsTheme, * // ... other options * }; * ``` * * For dark mode, set `color-scheme` on a parent element: * ```html * * * * ``` * * For light dark mode, set `color-scheme` on a parent element: * ```html * * * * ``` */ export declare const pdsTheme: Theme; export declare const pdsThemeCompact: Theme;