import type { FC } from 'react'; import { SVGAsset } from 'twitch-core-ui'; import { StreamType } from '../utils'; export interface StreamTypeIndicatorProps { isOverlay: boolean; isPulsing: boolean; streamType: StreamType | undefined; } interface AssetAndFill { asset: SVGAsset; fill: boolean; } declare type AssetAndFillIndicators = StreamType.Premiere | StreamType.Rerun; declare type AssetAndFillMapping = Record; export declare const streamTypeAssetsAndFills: AssetAndFillMapping; export declare const StreamTypeIndicator: FC; export {}; //# sourceMappingURL=index.d.ts.map