import { PropsWithChildren } from 'react'; export type FeatureGridItemProps = PropsWithChildren<{ /** * Custom classname */ className?: string; }>; export declare const FeatureGridItem: (props: { /** * Custom classname */ className?: string | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes) => import("react").ReactElement> | null;