import React, { CSSProperties } from 'react'; interface IPusher { style?: CSSProperties; showStreamInfo?: boolean; loading?: boolean; renderLoading?: Function; renderAudioStream?: any; isSpkear?: boolean; className?: string; isLargeView?: boolean; } declare const Pusher: React.MemoExoticComponent<(props: IPusher) => import("react/jsx-runtime").JSX.Element>; export default Pusher;