import * as React from "react"; import * as react_jsx_runtime66 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types11 from "class-variance-authority/types"; //#region src/components/organisms/ListCardPage.d.ts declare const containerVariants: (props?: ({ density?: "compact" | "comfortable" | null | undefined; } & class_variance_authority_types11.ClassProp) | undefined) => string; declare const gridVariants: (props?: ({ size?: "sm" | "md" | "lg" | null | undefined; } & class_variance_authority_types11.ClassProp) | undefined) => string; interface ListCardPageProps extends VariantProps, VariantProps { title: React.ReactNode; subtitle?: React.ReactNode; items: T[]; renderCard: (item: T, index: number) => React.ReactNode; className?: string; columns?: { mobile?: number; tablet?: number; desktop?: number; }; } declare function ListCardPage({ title, subtitle, items, renderCard, className, columns, density, size }: ListCardPageProps): react_jsx_runtime66.JSX.Element; //#endregion export { ListCardPage }; //# sourceMappingURL=ListCardPage.d.ts.map