import type { Appearance } from '../../../Types/Appearance'; /** * Interface for properties inherited by child Table elements (rows, cells, etc.). * * @public */ export interface ITableInherited { /** * Inherited appearance. */ appearance?: Appearance; } /** * Context for Table → TableRow/TableCell inheritance. * * @public */ export declare const TABLE_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=TableInheritanceContext.d.ts.map