import * as React from "react"; import * as react_jsx_runtime67 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types13 from "class-variance-authority/types"; //#region src/components/organisms/ListTablePage.d.ts interface TableColumn { header: React.ReactNode; cell: (item: T, index: number) => React.ReactNode; className?: string; } declare const containerVariants: (props?: ({ density?: "compact" | "comfortable" | null | undefined; } & class_variance_authority_types13.ClassProp) | undefined) => string; interface ListTablePageProps extends VariantProps { title: React.ReactNode; subtitle?: React.ReactNode; items: T[]; columns: TableColumn[]; className?: string; renderActions?: (item: T, index: number) => React.ReactNode; } declare function ListTablePage({ title, subtitle, items, columns, className, density, renderActions }: ListTablePageProps): react_jsx_runtime67.JSX.Element; //#endregion export { ListTablePage }; //# sourceMappingURL=ListTablePage.d.ts.map