@grafana/ui
Version:
Grafana Components Library
10 lines (9 loc) • 352 B
TypeScript
import React, { FunctionComponent } from 'react';
import { Labels } from '@grafana/data';
import { Themeable } from '../../types/theme';
interface Props extends Themeable {
labels: Labels;
}
export declare const UnThemedLogLabels: FunctionComponent<Props>;
export declare const LogLabels: React.FunctionComponent<Pick<Props, "labels">>;
export {};