import { Meta, StoryObj } from '@storybook/react'; import Selector from './index'; /** * Selector 组件 - 高级选择器 * * 支持单选/多选、数量控制、校验规则、互斥组等功能 * * 查看文档: * - [开发文档](https://studio.picoding-dev.com/pro-components/selector?tab=dev) * - [需求文档](https://m1ed09stz4r.feishu.cn/wiki/NL5AwOs0ei5ZBekT4i6cuzIOnoM) */ declare const meta: Meta; export default meta; declare type Story = StoryObj; /** * 默认单选模式 - 原始值类型 */ export declare const Default: Story; /** * 多选模式 - 原始值数组 */ export declare const Multiple: Story; /** * 单选 + 数量 - 对象值类型 */ export declare const SingleWithQuantity: Story; /** * 多选 + 数量 - 卡片样式 */ export declare const MultipleWithQuantity: Story; /** * 网格布局 - 2列 */ export declare const GridLayout2Columns: Story; /** * 网格布局 - 3列 */ export declare const GridLayout3Columns: Story; /** * 校验规则 - 必选、最小/最大数量 */ export declare const WithValidation: Story; /** * 互斥组 - 同组只能选一个 */ export declare const MutexGroups: Story; /** * 禁用状态 */ export declare const Disabled: Story; /** * Select 变体 - 下拉选择 */ export declare const SelectVariant: Story; /** * Select 变体 - 多选下拉 */ export declare const SelectVariantMultiple: Story; /** * 卡片样式变体 - 不同选中态 */ export declare const CardVariants: Story; /** * 自定义图标 */ export declare const CustomIcon: Story; /** * 自定义渲染 */ export declare const CustomRender: Story; /** * SelectorGroup 基础示例 */ export declare const SelectorGroupBasic: StoryObj; /** * SelectorGroup 联动规则示例 */ export declare const SelectorGroupWithLinkage: StoryObj;