import type { Meta, StoryObj } from '@storybook/react-vite'; import Footer from './Footer'; /** * `Footer` renders a compact bar of links (with optional Lucide icons) pinned * to the bottom of the screen. On small screens it collapses into an info icon * that reveals the links in a popover. `icon` values are Lucide icon names. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithoutIcons: Story; export declare const Empty: Story;