import { IGenericRangeErrorOptions, IRangeError, IRangeOptions, IRangeOptionsNormalized } from './range-error.type';
export declare function createRangeError(variableName: string, options: IRangeOptions): IRangeError;
export declare function createRangeErrorFromNormalizedOptions(variableName: string, options: IRangeOptionsNormalized): IRangeError;
export declare function createRangeErrorMessage(variableName: string, options: IRangeOptionsNormalized): string;
export declare function createGenericRangeError(options?: IGenericRangeErrorOptions): IRangeError;
export declare function createGenericRangeErrorMessage(options?: IGenericRangeErrorOptions): string;
