/********************************************************************* * © Copyright IBM Corp. 2024 *********************************************************************/ import React from 'react'; import { ZIndexProps } from './model'; import { LogListItem } from '../LogsList'; export interface ServiceHeaderProps extends ZIndexProps { service?: string; servicesOptions?: string[]; onServiceChange?: (service?: string) => void; } export declare const ServiceHeader: ({ service, servicesOptions, onServiceChange, popoverZIndex }: ServiceHeaderProps) => React.JSX.Element; export declare const ServiceRow: ({ item, ...rest }: { item: LogListItem; }) => React.JSX.Element;