import type { LayoutProps } from '../types'; interface TestLayoutWithFooterProps extends Omit { footerText?: string; } declare const TestLayoutWithFooter: import("svelte").Component; type TestLayoutWithFooter = ReturnType; export default TestLayoutWithFooter;