import { default as React } from 'react';
export interface SessionControlsProps {
    showMicrophoneControl?: boolean;
    showCameraControl?: boolean;
    showScreenShareControl?: boolean;
    showSessionActions?: boolean;
    customControls?: React.ReactNode;
    className?: string;
}
export declare function SessionControls({ showMicrophoneControl, showCameraControl, showScreenShareControl, showSessionActions, customControls, className }: SessionControlsProps): import("react/jsx-runtime").JSX.Element;
