import type { CSSProperties, FunctionalComponent } from 'vue'; type FooterRendererProps = { class?: JSX.IntrinsicAttributes['class']; style: CSSProperties; }; declare const Footer: FunctionalComponent<FooterRendererProps>; export default Footer;