import { Meta, StoryObj } from '@storybook/react'; import { List } from 'components'; type CityRank = { position: number; city: string; country: string; livability: number; lovability: number; prosperity: number; imageUrl: string; }; declare const story: Meta; export declare const FlexLayout: StoryObj>; export default story;