export declare function getSnipBinaryPath(): string; export declare function isSnipInstalled(): boolean; /** * Check if snip is available on PATH (e.g., globally installed). */ export declare function isSnipOnPath(): boolean; /** * Check if snip is available (either auto-installed or on PATH). */ export declare function isSnipAvailable(): boolean; /** * Ensure snip binary is installed. * Downloads from GitHub releases if not present. * Falls back to 'snip' (PATH lookup) if installation fails. */ export declare function ensureSnipInstalled(): Promise;