/** * Check if a string is a Git SHA hash. * * @param value - String to check. * @returns True if the string is a SHA hash. */ export declare function isSha(value: undefined | string | null): boolean;