import React from 'react';
import { LayoutProps } from './types';
/**
 * Renders the screen layout component.
 *
 * @param {LayoutProps} props - The props object containing the children.
 * @return {React.ReactNode} The rendered screen layout component.
 */
declare const ScreenLayout: React.FC<LayoutProps>;
export default ScreenLayout;
