import type { JSX } from 'react'; import { type GrafanaTheme2 } from '@grafana/data'; /** * Use this to return a url in a tooltip in a field. Don't forget to make the field interactive to be able to click on the tooltip * @param url * @returns */ export declare function docsTip(url?: string): import("react/jsx-runtime").JSX.Element; export declare const validateInput: (input: string, pattern: string | RegExp, errorMessage?: string) => boolean | JSX.Element; export declare function overhaulStyles(theme: GrafanaTheme2): { additionalSettings: string; secondaryGrey: string; inlineError: string; switchField: string; sectionHeaderPadding: string; sectionBottomPadding: string; subsectionText: string; hrBottomSpace: string; hrTopSpace: string; textUnderline: string; versionMargin: string; advancedHTTPSettingsMargin: string; advancedSettings: string; alertingTop: string; overhaulPageHeading: string; container: string; };