import type React from "react"; export type ControlAction = "fullscreen" | "reset-camera" | "minimize" | "close"; export interface ControlsLayoutProps { className?: string; content: (ControlAction | React.ReactNode | (ControlAction | React.ReactNode)[])[]; onClick?(action: ControlAction): void; } export declare function ControlsLayout({ className, content, onClick }: ControlsLayoutProps): React.JSX.Element; //# sourceMappingURL=controls-layout.d.ts.map