import * as React from "react"; export interface ProjectGridProps extends React.HTMLAttributes { /** * Search/filter input value */ searchValue?: string; /** * Search input change handler */ onSearchChange?: (value: string) => void; /** * Search placeholder text */ searchPlaceholder?: string; /** * Grid items to display */ children?: React.ReactNode; /** * Number of columns in the grid */ columns?: 2 | 3 | 4 | 6; } declare const ProjectGrid: React.ForwardRefExoticComponent>; export interface ProjectCardProps extends React.HTMLAttributes { /** * Project title */ title: string; /** * Project description */ description?: string; /** * Project icon or image */ icon?: React.ReactNode; /** * Whether this is a "create new" card */ isCreate?: boolean; /** * Click handler */ onCardClick?: () => void; } declare const ProjectCard: React.ForwardRefExoticComponent>; export { ProjectGrid, ProjectCard }; //# sourceMappingURL=ProjectGrid.d.ts.map