/// <reference types="react" />
import { LayoutProps } from './Layout';
/**
 * Props for {@link FocusedContentLayout}.
 *
 * @private
 */
export interface FocusedContentLayoutProps extends LayoutProps {
    /**
     * Whether to display the local video camera switcher button
     */
    showCameraSwitcherInLocalPreview?: boolean;
    /**
     * Height of parent element
     */
    parentHeight?: number;
}
/**
 * Video gallery layout to focus on the screenshare stream that is present in the call.
 */
export declare const FocusedContentLayout: (props: FocusedContentLayoutProps) => JSX.Element;
//# sourceMappingURL=FocusContentLayout.d.ts.map