import type { Meta, StoryObj } from '@storybook/react'; import { PisellFind } from './index'; /** * PisellFind 组件 Storybook * 基于 PisellLookup 的组件内查找优化版本 */ declare const meta: Meta; export default meta; declare type Story = StoryObj; /** * 基础示例 - 列表查找 */ export declare const Basic: Story; /** * 表格查找 */ export declare const TableFind: Story; /** * Input 模式查找 */ export declare const InputMode: Story; /** * 使用 Ref 控制 */ export declare const WithRef: Story; /** * 显示确认按钮 */ export declare const WithConfirmButton: Story; /** * 关闭历史记录 */ export declare const NoHistory: Story; /** * 多字段搜索 */ export declare const MultiFieldSearch: Story; /** * Drawer 模式 */ export declare const DrawerMode: Story; /** * Playground - 自由配置 */ export declare const Playground: Story;