/**
 * Resolves the Spectral ruleset location based on user input or directory search
 * @param {string} [customPath] User-provided ruleset path
 * @returns {Promise<string | null>} Path to custom ruleset, null for default ruleset
 */
export declare function resolveRulesetPath(customPath?: string): Promise<string | null>;
