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 {};