2021-02-20 18:55:36 +01:00
|
|
|
import { Registry } from "tc-shared/events";
|
2021-03-20 16:18:05 +01:00
|
|
|
import { HostBannerInfoSet, HostBannerUiEvents } from "tc-shared/ui/frames/HostBannerDefinitions";
|
2021-02-20 18:55:36 +01:00
|
|
|
import * as React from "react";
|
2021-03-20 16:18:05 +01:00
|
|
|
export declare const HostBannerRenderer: React.MemoExoticComponent<(props: {
|
|
|
|
banner: HostBannerInfoSet;
|
|
|
|
className?: string;
|
|
|
|
}) => JSX.Element>;
|
2021-02-20 18:55:36 +01:00
|
|
|
export declare const HostBanner: React.MemoExoticComponent<(props: {
|
|
|
|
events: Registry<HostBannerUiEvents>;
|
|
|
|
}) => JSX.Element>;
|