export declare function minAndMax<T>(arr: Array<T>, compare?: (a: T, b: T) => boolean): {
    min: T;
    max: T;
};
