import React from "react"; export interface StudioActionBarProps { /** Whether a WHIP endpoint is configured (required to go live) */ whipUrl?: string; /** Show the settings button */ showSettingsButton?: boolean; /** Custom children to render instead of default buttons */ children?: React.ReactNode; } export declare const StudioActionBar: React.FC;