aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
24 lines • 839 B
TypeScript
/**
* ImageListItem Component
*
* An item component for the ImageList with glass morphism styling.
* Features comprehensive accessibility support including ARIA labels,
* keyboard navigation, and screen reader announcements.
*/
import React from "react";
import { ImageListItemProps } from "./types";
/**
* ImageListItem Component
*
* An item component for the ImageList.
*/
declare const ImageListItem: React.ForwardRefExoticComponent<ImageListItemProps & React.RefAttributes<HTMLLIElement>>;
/**
* GlassImageListItem Component
*
* Glass variant of the ImageListItem component.
*/
declare const GlassImageListItem: React.ForwardRefExoticComponent<ImageListItemProps & React.RefAttributes<HTMLLIElement>>;
export default ImageListItem;
export { ImageListItem, GlassImageListItem };
//# sourceMappingURL=ImageListItem.d.ts.map