/**
 * Validate a hookName string.
 *
 * @param hookName The hook name to validate. Should be a non empty string containing
 *                 only numbers, letters, dashes, periods and underscores. Also,
 *                 the hook name cannot begin with `__`.
 *
 * @return Whether the hook name is valid.
 */
declare function validateHookName(hookName: string): boolean;
export default validateHookName;
//# sourceMappingURL=validateHookName.d.ts.map