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