import React, { ReactNode } from 'react'; import { FooterProps } from '../components/Footer/Footer'; interface MinimalLayoutProps { /** * If true the page will show a progress page. */ isLoading?: boolean; /** * If true the page will show an error page. */ isError?: boolean; /** * The error to be shown in the error page. */ error?: Error; /** * The main content of the layout. */ children?: ReactNode; /** * The properties to be passed to the footer component. */ footer?: FooterProps; } declare const MinimalLayout: React.FC; export default MinimalLayout; //# sourceMappingURL=MinimalLayout.d.ts.map