import { CSSProperties } from 'react';
export type CallPreviewProps = {
    /**
     * Additional CSS class name to apply to the CallPreview element.
     */
    className?: string;
    /**
     * Additional CSS properties to apply to the CallPreview element.
     */
    style?: CSSProperties;
};
export declare const CallPreview: (props: CallPreviewProps) => import("react/jsx-runtime").JSX.Element | null;
