/********************************************************************* * © Copyright IBM Corp. 2024 *********************************************************************/ import React from 'react'; import { ZIndexProps } from './model'; import { AuditEvent } from '../ConfigurationList'; export interface AreaHeaderProps extends ZIndexProps { area?: string | null; onAreaChange?: (area?: string | null) => void; } export declare const AreaHeader: () => React.JSX.Element; export declare const AreaRow: ({ item, ...rest }: { item: AuditEvent; }) => React.JSX.Element;