import type { Meta, StoryObj } from '@storybook/react'; import * as ServiceList from './ServiceList'; /** * ServiceList component story. * * ServiceList renders a list of bookings services. When the configured services * carry an `available` flag (availability mode), stories can style each item by * its availability. It supports filtering by categories, availability dates, and * custom attributes. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** * Basic list with three services, two available and one unavailable. */ export declare const BasicList: Story; /** * List with empty state message displayed when no services are available. */ export declare const EmptyState: Story; /** * List with detailed service information (name and price). */ export declare const WithServiceDetails: Story; /** * List with custom styling for available/unavailable items. */ export declare const WithAvailabilityStates: Story;