import { type DataSourceJsonData, type DataSourcePluginOptionsEditorProps, type KeyValue } from '@grafana/data'; export interface Props { editorProps: DataSourcePluginOptionsEditorProps; showCACert?: boolean; showKeyPair?: boolean; secureJsonFields?: KeyValue; labelWidth?: number; } export declare const TLSSecretsConfig: (props: Props) => import("react/jsx-runtime").JSX.Element;