import { ComputeRange } from '@techmely/types';

declare function alphaHex(hex: string, alpha: ComputeRange<MAXIMUM_ALLOWED_BOUNDARY>[number]): string;
type MAXIMUM_ALLOWED_BOUNDARY = 101;

export { alphaHex };
