UNPKG

@atlaskit/renderer

Version:
11 lines (10 loc) 291 B
import type { ReactNode } from 'react'; interface Config { enableWarningTooltip: boolean; } interface Result { renderBidiWarnings: (text: string) => ReactNode; warningLabel: string; } export declare const useBidiWarnings: ({ enableWarningTooltip }: Config) => Result; export {};