import { ReactElement } from 'react'; import { FeatureGridItemProps } from './feature-grid-item/feature-grid-item'; import { ThemeColorVariables } from '@dreipol/t3-react-theme'; export type FeatureGridProps = { /** * Number of columns of grid */ columns?: number; /** * Header component */ header?: ReactElement; /** * Grid elements */ children?: ReactElement[] | ReactElement; /** * Custom classname */ className?: string; /** * Custom background color of feature grid */ backgroundColor?: ThemeColorVariables; }; export declare const FeatureGrid: (props: FeatureGridProps & import("react").RefAttributes) => ReactElement> | null;