/** * Table Base Mixin * * Shared structural foundation for table-like components (`ore-table`, `ore-datagrid`). * Covers only the `:host` shell, `.scroll-container`, and the bare `table` element. * Each consumer component owns all cell, row, head, and footer styles itself. * * Token naming: * - `--_accent` Primary interactive accent (sort icons, selection borders, focus rings). * Defaults to `--color-primary-focus`. Override via `--{prefix}-accent`. * * @param prefix CSS custom-property namespace, e.g. `'table'` or `'datagrid'` * * @example * ```ts * // ore-table * styles: [tableBaseMixin('table'), componentStyles] * * // ore-datagrid * styles: [tableBaseMixin('datagrid'), componentStyles] * ``` */ export declare const tableBaseMixin: (prefix: string) => import("@vielzeug/ore").CSSResult; //# sourceMappingURL=table-base.css.d.ts.map