import { ReactNode } from 'react';
export interface SessionContentProps {
    showChat?: boolean;
    showTranscriptions?: boolean;
    customContent?: ReactNode;
    className?: string;
}
export declare function SessionContent({ showChat, showTranscriptions, customContent, className }: SessionContentProps): import("react/jsx-runtime").JSX.Element;
