/** * Returns the maximum value from a list of numbers or bigints. * @param values - The values to compare. * @returns The maximum value. */ export declare function max(...values: T[]): T;