/* * 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 { NoticeListProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime80 from "react/jsx-runtime"; //#region src/components/notice/list.d.ts /** * NoticeList - Queue manager for displaying multiple notices * * Manages a FIFO queue of notices with automatic timeout and dismissal. * New notices push out older ones when the limit is reached. * Uses event-driven communication via the bus system. * * @example * ```tsx * * ``` * * @param props - {@link NoticeListProps} * @param props.id - Unique identifier for targeting notices to this list. * @param props.classNames - CSS class names for list elements. * @param props.defaultColor - Default color for notices without explicit color. * @param props.defaultTimeout - Default timeout for notices without explicit timeout. * @param props.hideClearAll - Whether to hide the "Clear All" button. * @param props.limit - Maximum number of visible notices. * @param props.global - Whether to use global ToastRegion for portal rendering. * @param props.placement - Position of the notice list on screen. * @param props.size - Size variant for notices in the list. * @returns The rendered NoticeList component. */ declare function NoticeList({ id, classNames, defaultColor, defaultTimeout, hideClearAll, limit, global, placement, size, ...rest }: NoticeListProps): react_jsx_runtime80.JSX.Element; //#endregion export { NoticeList }; //# sourceMappingURL=list.d.ts.map