import React from 'react'; import type { SlotProps, SubpageLayoutProps } from './interface'; declare const Background: React.FC; declare const Navigation: React.FC; declare const SubHeader: React.FC; declare const Content: React.FC; declare const Footer: React.FC; declare const SubpageLayout: React.FC & { Background: typeof Background; Navigation: typeof Navigation; SubHeader: typeof SubHeader; Content: typeof Content; Footer: typeof Footer; }; export default SubpageLayout;