import type { Options } from '../types';
/**
 * Validates input options.
 * Please read the README for more information.
 * @param {number} length
 * @param {Options} [options]
 * @throws {error} if called with invalid options
 */
export declare const validateOptions: (length: number, options?: Options) => void;
