/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { ListProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime53 from "react/jsx-runtime"; //#region src/components/list/index.d.ts /** * List - A flexible grid list component for selectable items with rich content * * Provides accessible grid list functionality with support for selection, * and rich item content including labels, descriptions, icons, and actions. Perfect for * data tables, file lists, or any selectable grid interface. * * @example * ```tsx * // Basic list view with sizing *
* * * * Item 1 * * * *
* ``` * * @param props - {@link ListProps} * @param props.ref - Forwarded ref to the underlying GridList element. * @param props.children - List item elements to render. * @param props.className - Optional CSS class name. * @param props.variant - Visual density variant for list items. * @returns The rendered List component. */ declare function List({ ref, ...props }: ListProps): react_jsx_runtime53.JSX.Element; //#endregion export { List }; //# sourceMappingURL=index.d.ts.map