@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
30 lines (29 loc) • 1.41 kB
TypeScript
import '@ui5/webcomponents-fiori/dist/SearchMessageArea.js';
import type { CommonProps, Ui5DomRef } from '@ui5/webcomponents-react-base';
interface SearchMessageAreaAttributes {
/**
* Defines the description text to be displayed.
* @default undefined
*/
description?: string | undefined;
/**
* Defines the text to be displayed.
* @default undefined
*/
text?: string | undefined;
}
interface SearchMessageAreaDomRef extends Required<SearchMessageAreaAttributes>, Ui5DomRef {
}
interface SearchMessageAreaPropTypes extends SearchMessageAreaAttributes, Omit<CommonProps, keyof SearchMessageAreaAttributes> {
}
/**
* `import "@ui5/webcomponents-fiori/dist/SearchMessageArea.js";`
*
* __Note:__ This is a UI5 Web Component! [SearchMessageArea UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/SearchMessageArea) | [Repository](https://github.com/UI5/webcomponents)
*
* @since [2.9.0](https://github.com/UI5/webcomponents/releases/tag/v2.9.0) of __@ui5/webcomponents-fiori__.
* @experimental
*/
declare const SearchMessageArea: import("react").ForwardRefExoticComponent<SearchMessageAreaPropTypes & import("@ui5/webcomponents-react-base").WithWebComponentPropTypes & import("react").RefAttributes<SearchMessageAreaDomRef>>;
export { SearchMessageArea };
export type { SearchMessageAreaDomRef, SearchMessageAreaPropTypes };