/** * @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; } /** * Background media. * * @element c4d-background-media * @csspart controls - The video player controls. Usage: `c4d-background-media::part(controls)` * @csspart gradient - The gradient covering the image. Usage: `c4d-background-media::part(gradient)` * @csspart container - The component's container. Usage: `c4d-background-media::part(container)` * @csspart item - The image container. Usage: `c4d-background-media::part(item)` */ declare class C4DBackgroundMedia extends Component {} export default C4DBackgroundMedia;