/** * @license * * Copyright IBM Corp. 2020 * * 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 { Component } from 'react'; export interface ComponentProps { [prop: string]: unknown; } /** * Component that renders masthead from links, etc. data. * * @element c4d-masthead-composite * @csspart view-all - Targets all view-all elements. Usage: `c4d-masthead-composite::part(view-all)` * @csspart view-all-left - Targets the view all left. Usage: `c4d-masthead-composite::part(view-all-left)` * @csspart view-all-right - Targets the view all right. Usage: `c4d-masthead-composite::part(view-all-right)` * @csspart view-all-bottom - Targets the view all bottom. Usage: `c4d-masthead-composite::part(view-all-bottom)` * @csspart l0-view-all-products-arrow - Targets the view all products arrow icon. Usage: `c4d-masthead-composite::part(l0-view-all-products-arrow)` */ declare class C4DMastheadComposite extends Component {} export default C4DMastheadComposite;