/** * @license * * Copyright IBM Corp. 2020, 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import { TemplateResult } from 'lit'; import C4DContentItem from '../content-item/content-item'; /** * A component to present a content in a row orientation. * * @element c4d-content-item-row * @csspart heading-wrapper - The heading wrapper. Usage: `c4d-content-item-row::part(eading-wrapper)` * @csspart content-wrapper - The content wrapper. Usage: `c4d-content-item-row::part(content-wrapper)` * @csspart body-wrapper - The body wrapper. Usage: `c4d-content-item-row::part(body-wrapper)` * @csspart col - Selector for all columns. Usage: `c4d-content-item-row::part(col)` */ declare class C4DContentItemRow extends C4DContentItem { /** * Determines whether to render the thumbnail variant */ thumbnail: boolean; /** * @returns The body content. */ protected _renderMedia(): TemplateResult | string | void; render(): TemplateResult<1>; static get stableSelector(): string; static styles: any; } export default C4DContentItemRow; //# sourceMappingURL=content-item-row.d.ts.map