/**
 * @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.js';
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 (
 *         <Grid data={[]}>
 *             <GridNoRecords>There is no data available</GridNoRecords>
 *             <GridColumn field="id" />
 *             <GridColumn field="name" />
 *         </Grid>
 *     );
 * };
 *
 * export default App;
 * ```
 */
export declare const GridNoRecords: {
    (props: GridNoRecordsProps): React.JSX.Element;
    displayName: string;
};
