/** * SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ import React from 'react'; interface IGroup extends React.HTMLAttributes { /** * Indicates Form Group should be a small variant. */ small?: boolean; } interface IFeedbackIndicatorProps extends React.HTMLAttributes { /** * Path to the location of the spritemap resource. */ spritemap?: string; /** * Name of icon symbol */ symbol: string; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes> & { BlockquoteText: React.ForwardRefExoticComponent & React.RefAttributes>; FeedbackGroup: React.ForwardRefExoticComponent & React.RefAttributes>; FeedbackIndicator: React.ForwardRefExoticComponent>; FeedbackItem: React.ForwardRefExoticComponent & React.RefAttributes>; Group: React.ForwardRefExoticComponent>; HelpText: React.ForwardRefExoticComponent & React.RefAttributes>; Text: React.ForwardRefExoticComponent & React.RefAttributes>; }; export default _default;