import { SCLiveStreamType } from '@selfcommunity/types';
import { ReactNode } from 'react';
export interface LiveStreamInfoDetailsProps {
    liveStream: SCLiveStreamType;
    liveStreamId?: number;
    hideDateIcon?: boolean;
    hideLocationIcon?: boolean;
    hideCreatedIcon?: boolean;
    hasDateInfo?: boolean;
    hasLocationInfo?: boolean;
    hasCreatedInfo?: boolean;
    hasInProgress?: boolean;
    beforeDateInfo?: ReactNode | null;
    beforeLocationInfo?: ReactNode | null;
    beforeCreatedInfo?: ReactNode | null;
}
export default function LiveStreamInfoDetails(inProps: LiveStreamInfoDetailsProps): JSX.Element;
