import { default as PropTypes } from 'prop-types'; export default StandardLayout; /** * footer standard layout */ declare function StandardLayout({ elements, data, className, ...rest }: { [x: string]: any; elements: any; data: any; className?: string | undefined; }): import("react/jsx-runtime").JSX.Element; declare namespace StandardLayout { namespace propTypes { let elements: PropTypes.Validator; navigation: PropTypes.Requireable; socialMedia: PropTypes.Requireable; copyright: PropTypes.Requireable; links: PropTypes.Requireable; }>>>; let data: PropTypes.Validator; let className: PropTypes.Requireable; } }