import React from "react"; import type { StoryObj } from "@storybook/react"; import { DataTable } from "../../components/ui/data-table"; declare const meta: { title: string; component: typeof DataTable; parameters: { layout: string; }; tags: string[]; }; export default meta; type Story = StoryObj & { render?: () => React.JSX.Element; }; export declare const Default: Story; export declare const Searchable: Story; export declare const WithPagination: Story; export declare const WithSorting: Story; export declare const FullFeatured: Story; /** * DataTable with pagination at the top (NEW) * Perfect for layouts where content needs to flow differently */ export declare const PaginationTop: Story; /** * DataTable with pagination on both top and bottom */ export declare const PaginationBoth: Story; /** * Tab-wise DataTable with Pagination on Top (From Figma) * This matches the iCaptur Figma design with tabs and top pagination */ export declare const TabWiseWithTopPagination: Story; //# sourceMappingURL=DataTable.stories.d.ts.map