import { Component, CSSProperties } from 'react'; export interface LccSlotRenderProps { content: any; className: any; style?: CSSProperties; } export default class LccSlotRender extends Component { static displayName: string; static defaultProps: any; render(): JSX.Element; }