import type { ErrorId, ErrorMap, GetErrorParams } from './errorMessages/errorText'; export declare let baseDocLink: string; /** * The ValidationService passes itself in if it has been included. * @param logger */ export declare function provideValidationServiceLogger(logger: (id: TId, args: GetErrorParams) => any[]): void; /** Set by the Framework override to give us accurate links for the framework */ export declare function setValidationDocLink(docLink: string): void; /** * Correctly formats a string or undefined or null value into a human readable string * @param input */ export declare function toStringWithNullUndefined(str: string | null | undefined): string; export declare function getErrorLink(errorNum: ErrorId, args: GetErrorParams): string; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _warn(...args: GetErrorParams extends undefined ? [id: TId] : [id: TId, params: GetErrorParams]): void; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _error(...args: GetErrorParams extends undefined ? [id: TId] : [id: TId, params: GetErrorParams]): void; /** Used for messages before the ValidationService has been created */ export declare function _logPreInitErr(id: TId, args: GetErrorParams, defaultMessage: string): void; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _logPreInitWarn(id: TId, args: GetErrorParams, defaultMessage: string): void; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _errMsg(...args: GetErrorParams extends undefined ? [id: TId] : [id: TId, params: GetErrorParams]): string; /** * Used for messages before the ValidationService has been created * @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _preInitErrMsg(...args: GetErrorParams extends undefined ? [id: TId] : [id: TId, params: GetErrorParams]): string;