/** * @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; } /** * StructuredList * * @element c4d-structured-list * @csspart overflow-indicator - Overflow indicator. Usage `c4d-structured-list::part(overflow-indicator)` * @csspart overflow-indicator--left - Overflow indicator left. Usage `c4d-structured-list::part(overflow-indicator--left)` * @csspart overflow-indicator--right - Overflow indicator right. Usage `c4d-structured-list::part(overflow-indicator--right)` * @csspart section - List section. Usage `c4d-structured-list::part(section)` */ declare class C4DStructuredList extends Component {} export default C4DStructuredList;