export type HostViewProps = {
    isLive: boolean;
    isBackstageEnabled: boolean;
    onGoLive: () => void;
    onStopLive: () => void;
};
export declare const HostLayout: ({ isLive, isBackstageEnabled, onGoLive, onStopLive, }: HostViewProps) => import("react/jsx-runtime").JSX.Element;
