/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridNoRecordsProps } from '../../interfaces/GridNoRecordsProps'; import * as React from 'react'; /** * Represents the GridNoRecords component. The component is rendered when the `data` property of the Grid is empty or `null`. * * @example * ```jsx * const App = () => { * return ( * * There is no data available * * * * ); * }; * * export default App; * ``` */ export declare const GridNoRecords: { (props: GridNoRecordsProps): React.JSX.Element; displayName: string; };